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.
This commit is contained in:
Pietro Albini 2020-08-03 10:32:47 +02:00
parent 1b0ff9e7d0
commit 268bc7fa2f
No known key found for this signature in database
GPG key ID: 3E06ABE80BAAF19C
2 changed files with 2 additions and 0 deletions

View file

@ -575,6 +575,7 @@ jobs:
CACHE_DOMAIN: ci-caches-gha.rust-lang.org
if: "github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
strategy:
fail-fast: false
matrix:
include:
- name: aarch64-gnu

View file

@ -587,6 +587,7 @@ jobs:
<<: [*shared-ci-variables, *dummy-variables]
if: github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'
strategy:
fail-fast: false
matrix:
include:
#############################