File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,11 @@ jobs:
103103
104104 - name : Assemble
105105 # javadoc task fails sporadically fetching https://docs.oracle.com/javase/8/docs/api/
106- run : ./gradlew assemble -Dai.etw.native.build=release -x javadoc ${{ inputs.no-build-cache && '--no-build-cache' || '' }}
106+ run : >
107+ ./gradlew assemble
108+ "-Dai.etw.native.build=release"
109+ -x javadoc
110+ ${{ inputs.no-build-cache && '--no-build-cache' || '' }}
107111
108112 - name : Upload snapshot
109113 uses : actions/upload-artifact@v4
@@ -167,7 +171,8 @@ jobs:
167171 -PtestJavaVersion=${{ matrix.test-java-version }}
168172 -PtestJavaVM=${{ matrix.vm }}
169173 "-Porg.gradle.java.installations.paths=${{ steps.setup-test-java.outputs.path }}"
170- -Porg.gradle.java.installations.auto-download=false ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
174+ "-Porg.gradle.java.installations.auto-download=false"
175+ ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
171176
172177 setup-smoke-test-matrix :
173178 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments