Skip to content

Commit dd6bd41

Browse files
committed
Disable configuration cache on CI due to Spotless issue
Issue: diffplug/spotless#2318
1 parent eb43213 commit dd6bd41

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/actions/main-build/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ inputs:
44
arguments:
55
required: true
66
description: Gradle arguments
7-
default: :platform-tooling-support-tests:test build --configuration-cache
7+
default: :platform-tooling-support-tests:test build --no-configuration-cache # Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
88
encryptionKey:
99
required: true
1010
description: Gradle cache encryption key

.github/workflows/cross-version.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
-PjavaToolchain.version=${{ matrix.jdk.version }} \
6666
-Dscan.tag.JDK_${{ matrix.jdk.version }} \
6767
build \
68-
--configuration-cache
68+
--no-configuration-cache #Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
6969
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
7070
if: ${{ always() }}
7171
with:
@@ -106,7 +106,7 @@ jobs:
106106
-Dscan.tag.JDK_${{ matrix.jdk }} \
107107
-Dscan.tag.OpenJ9 \
108108
build \
109-
--configuration-cache
109+
--no-configuration-cache # Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
110110
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
111111
if: ${{ always() }}
112112
with:

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
:platform-tooling-support-tests:test \
3939
build \
4040
jacocoRootReport \
41-
--configuration-cache
41+
--no-configuration-cache # Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
4242
- name: Upload to Codecov.io
4343
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4
4444
with:

.github/workflows/reproducible-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
encryptionKey: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
3030
arguments: |
3131
--quiet \
32-
--configuration-cache
32+
--no-configuration-cache # Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
3333
- name: Build and compare checksums
3434
shell: bash
3535
run: |

0 commit comments

Comments
 (0)