From eea5988e6d0db3f2f40acca97a23a01510589c80 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 5 May 2025 10:23:25 -0400 Subject: [PATCH] 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. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 607a31a6b..437be278a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }}