Skip to content

Commit 5906026

Browse files
authored
Add back --no-daemon where it is being useful (#13229)
1 parent 081415e commit 5906026

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-common.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,8 @@ jobs:
374374

375375
- name: Build
376376
# 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' || '' }}
377+
# --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' || '' }}
378379

379380
- name: Test
380381
run: ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}${{ inputs.no-build-cache && ' --no-build-cache' || '' }}

0 commit comments

Comments
 (0)