1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

Only run the test step after build completes

This prevents the test step from duplicating work from the build step.
This minimizes contention on our macOS build infra most significantly, but the others too.
This commit is contained in:
Graham Christensen 2025-05-05 10:23:25 -04:00
parent 498f34b336
commit eea5988e6d

View file

@ -37,6 +37,7 @@ jobs:
path: ./tarball/*.xz
test:
if: ${{ inputs.if && inputs.run_tests}}
needs: build
strategy:
fail-fast: false
runs-on: ${{ inputs.os }}