We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 081415e commit 5906026Copy full SHA for 5906026
.github/workflows/build-common.yml
@@ -374,7 +374,8 @@ jobs:
374
375
- name: Build
376
# running suite "none" compiles everything needed by smoke tests without executing any tests
377
- run: ./gradlew :smoke-tests:test -PsmokeTestSuite=none ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
+ # --no-daemon is used to free up the memory from the build step before running the test step below
378
+ run: ./gradlew :smoke-tests:test -PsmokeTestSuite=none --no-daemon ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
379
380
- name: Test
381
run: ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
0 commit comments