Skip to content

Commit

Permalink
try to reproduce jitpack.io failure
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Dec 25, 2024
1 parent ddd1210 commit debaac8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/run-gradle/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
with:
java-version: ${{ env.toolchainVersion }}
distribution: temurin
distribution: zulu
- name: Prepare JDK toolchain
shell: bash
run: |
Expand All @@ -55,7 +55,7 @@ runs:
java-version: ${{
inputs.java == 'GraalVM' && inputs.graal ||
(inputs.early-access == inputs.java && format('{0}-ea', inputs.java) || inputs.java) }}
distribution: ${{ inputs.java == 'GraalVM' && 'graalvm' || 'temurin' }}
distribution: ${{ inputs.java == 'GraalVM' && 'graalvm' || 'zulu' }}
- name: Prepare JDK ${{ inputs.java }}
shell: bash
run: |
Expand Down
4 changes: 2 additions & 2 deletions gradle/develocity.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ buildCache {
remote(develocity.buildCache) {
// Check access key presence to avoid build cache errors on PR builds when not present
push = System.env.CI && System.env.DEVELOCITY_ACCESS_KEY
enabled = !gradle.startParameter.isBuildScan()
enabled = false // !gradle.startParameter.isBuildScan()
}
local.enabled = true
local.enabled = false
}

0 comments on commit debaac8

Please sign in to comment.