diff options
| author | bors <bors@rust-lang.org> | 2020-08-04 09:18:22 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-08-04 09:18:22 +0000 |
| commit | c9b80bb3ff194d488fdd95da2ef23bd466f921cb (patch) | |
| tree | 5572a26486fcbaea54eb4d6ec3929f1efe13df1f /src | |
| parent | 40857b9453a80801fc51b606b0d7532efedad42b (diff) | |
| parent | 268bc7fa2f8e09e371c6deb71eb9397700cb5342 (diff) | |
| download | rust-c9b80bb3ff194d488fdd95da2ef23bd466f921cb.tar.gz rust-c9b80bb3ff194d488fdd95da2ef23bd466f921cb.zip | |
Auto 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
Diffstat (limited to 'src')
| -rw-r--r-- | src/ci/github-actions/ci.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ci/github-actions/ci.yml b/src/ci/github-actions/ci.yml index 8a6973bcdd6..0ff77de003d 100644 --- a/src/ci/github-actions/ci.yml +++ b/src/ci/github-actions/ci.yml @@ -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: ############################# |
