Skip to content

Commit

Permalink
workflows: disable fail-fast on Rust jobs
Browse files Browse the repository at this point in the history
Keep CI usable even though the s390x jobs are failing.
  • Loading branch information
bgilbert committed Jun 3, 2022
1 parent 635b214 commit 025d5ba
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
name: "Tests, stable toolchain"
runs-on: ubuntu-latest
strategy:
# Keep x86_64 jobs alive if s390x jobs fail
fail-fast: false
matrix:
arch:
- x86_64
Expand Down Expand Up @@ -63,6 +65,8 @@ jobs:
name: "Tests, minimum supported toolchain"
runs-on: ubuntu-latest
strategy:
# Keep x86_64 jobs alive if s390x jobs fail
fail-fast: false
matrix:
arch:
- x86_64
Expand Down Expand Up @@ -108,6 +112,8 @@ jobs:
name: "Lints, pinned toolchain"
runs-on: ubuntu-latest
strategy:
# Keep x86_64 jobs alive if s390x jobs fail
fail-fast: false
matrix:
arch:
- x86_64
Expand Down

0 comments on commit 025d5ba

Please sign in to comment.