Skip to content

Commit 6bc70f1

Browse files
authored
Rollup merge of #75095 - pietroalbini:fallible-fast-fail, r=Mark-Simulacrum
ci: disable fast-fail on auto-fallible The purpose of the auto-fallible job is to run builders that are likely to fail on CI without gating on them. Having fast-fail enabled there kinda defeats the purpose, as if one of them fails we can't monitor the outcome of the other ones. This was prompted by the aarch64-gnu builder consistently failing due to a broken test, preventing us from seeing if the macOS spurious failure is fixed. r? @Mark-Simulacrum
2 parents f414f2a + 4657923 commit 6bc70f1

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,7 @@ jobs:
575575
CACHE_DOMAIN: ci-caches-gha.rust-lang.org
576576
if: "github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
577577
strategy:
578+
fast-fail: false
578579
matrix:
579580
include:
580581
- name: aarch64-gnu

src/ci/github-actions/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -587,6 +587,7 @@ jobs:
587587
<<: [*shared-ci-variables, *dummy-variables]
588588
if: github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'
589589
strategy:
590+
fast-fail: false
590591
matrix:
591592
include:
592593
#############################

0 commit comments

Comments
 (0)