Add back --no-daemon where it is being useful (#13229)

This commit is contained in:
Trask Stalnaker 2025-02-05 09:21:43 -08:00 committed by GitHub
parent 081415e6b1
commit 590602638f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -374,7 +374,8 @@ jobs:
- name: Build
# running suite "none" compiles everything needed by smoke tests without executing any tests
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
run: ./gradlew :smoke-tests:test -PsmokeTestSuite=none --no-daemon ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
- name: Test
run: ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}${{ inputs.no-build-cache && ' --no-build-cache' || '' }}