https://github.com/python/cpython/commit/fda056e64bdfcac3dd3d13eebda0a24994d83cb8 commit: fda056e64bdfcac3dd3d13eebda0a24994d83cb8 branch: main author: Adam Turner <9087854+aa-tur...@users.noreply.github.com> committer: AA-Turner <9087854+aa-tur...@users.noreply.github.com> date: 2025-02-26T21:44:48Z summary:
gh-130604: Always run all matrix workflows in GitHub Actions (#130603) files: M .github/workflows/build.yml M .github/workflows/jit.yml M .github/workflows/project-updater.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bbb36b17127fa8..97ec5cbaa7475f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -185,6 +185,7 @@ jobs: needs: build-context if: fromJSON(needs.build-context.outputs.run-windows-msi) strategy: + fail-fast: false matrix: arch: - x86 @@ -236,6 +237,7 @@ jobs: needs: build-context if: needs.build-context.outputs.run-tests == 'true' strategy: + fail-fast: false matrix: bolt: - false @@ -452,6 +454,7 @@ jobs: needs: build-context if: needs.build-context.outputs.run-tests == 'true' strategy: + fail-fast: false matrix: os: [ubuntu-24.04] env: @@ -515,6 +518,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/jit.yml b/.github/workflows/jit.yml index 47fdf5393c816a..d9e2ffc3fd4da6 100644 --- a/.github/workflows/jit.yml +++ b/.github/workflows/jit.yml @@ -139,6 +139,7 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 90 strategy: + fail-fast: false matrix: llvm: - 19 diff --git a/.github/workflows/project-updater.yml b/.github/workflows/project-updater.yml index 066d8593a70cf6..1d9d637ec848a6 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 _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com