diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2020-08-03 10:32:47 +0200 |
|---|---|---|
| committer | Pietro Albini <pietro@pietroalbini.org> | 2020-08-04 11:14:28 +0200 |
| commit | 268bc7fa2f8e09e371c6deb71eb9397700cb5342 (patch) | |
| tree | 182f13493bf3e7d8f8d842bd72d7e6906fbcbe05 /src/ci/github-actions | |
| parent | 1b0ff9e7d0620daa86a80bf92f6b661f7699984e (diff) | |
| download | rust-268bc7fa2f8e09e371c6deb71eb9397700cb5342.tar.gz rust-268bc7fa2f8e09e371c6deb71eb9397700cb5342.zip | |
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.
Diffstat (limited to 'src/ci/github-actions')
| -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: ############################# |
