From 630dc2bd6422715f848b76d7950919daa8c44b99 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Wed, 26 Feb 2025 22:13:00 +0000 Subject: [PATCH] [3.13] gh-130604: Always run all matrix workflows in GitHub Actions (GH-130603) (#130612) (cherry picked from commit fda056e64bdfcac3dd3d13eebda0a24994d83cb8) --- .github/workflows/build.yml | 4 ++++ .github/workflows/project-updater.yml | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index feabca5ccdf4..c54d94faff23 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -230,6 +230,7 @@ jobs: needs: build-context if: fromJSON(needs.build-context.outputs.run-windows-msi) strategy: + fail-fast: false matrix: arch: - x86 @@ -280,6 +281,7 @@ jobs: needs: build-context if: needs.build-context.outputs.run-tests == 'true' strategy: + fail-fast: false matrix: free-threading: - false @@ -479,6 +481,7 @@ jobs: needs: build-context if: needs.build-context.outputs.run-tests == 'true' strategy: + fail-fast: false matrix: os: [ubuntu-24.04] env: @@ -542,6 +545,7 @@ jobs: needs: build-context if: needs.build-context.outputs.run-tests == 'true' strategy: + fail-fast: false matrix: free-threading: - false diff --git a/.github/workflows/project-updater.yml b/.github/workflows/project-updater.yml index 066d8593a70c..1d9d637ec848 100644 --- a/.github/workflows/project-updater.yml +++ b/.github/workflows/project-updater.yml @@ -15,6 +15,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 strategy: + fail-fast: false matrix: include: # if an issue has any of these labels, it will be added -- 2.47.3