Skip to content

Commit 268bc7f

Browse files
committed
ci: disable fail-fast 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 fail-fast 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.
1 parent 1b0ff9e commit 268bc7f

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+
fail-fast: 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+
fail-fast: false
590591
matrix:
591592
include:
592593
#############################

0 commit comments

Comments
 (0)