Skip to content

Commit

Permalink
Disable configuration cache on CI due to Spotless issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Nov 15, 2024
1 parent eb43213 commit dd6bd41
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/main-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
arguments:
required: true
description: Gradle arguments
default: :platform-tooling-support-tests:test build --configuration-cache
default: :platform-tooling-support-tests:test build --no-configuration-cache # Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
encryptionKey:
required: true
description: Gradle cache encryption key
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cross-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
-PjavaToolchain.version=${{ matrix.jdk.version }} \
-Dscan.tag.JDK_${{ matrix.jdk.version }} \
build \
--configuration-cache
--no-configuration-cache #Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
if: ${{ always() }}
with:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
-Dscan.tag.JDK_${{ matrix.jdk }} \
-Dscan.tag.OpenJ9 \
build \
--configuration-cache
--no-configuration-cache # Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
if: ${{ always() }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
:platform-tooling-support-tests:test \
build \
jacocoRootReport \
--configuration-cache
--no-configuration-cache # Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
- name: Upload to Codecov.io
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reproducible-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
encryptionKey: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
arguments: |
--quiet \
--configuration-cache
--no-configuration-cache # Disable configuration cache due to https://github.com/diffplug/spotless/issues/2318
- name: Build and compare checksums
shell: bash
run: |
Expand Down

0 comments on commit dd6bd41

Please sign in to comment.