Skip to content

Commit ad05b96

Browse files
committed
try
1 parent ff211e5 commit ad05b96

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build-common.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)