Skip to content

Commit

Permalink
CI: keep going on failure if CI-no-fail-fast label is present
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Apr 24, 2022
1 parent d186f4a commit 5ece9b1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.zig == 'master' || matrix.toolchain == 'nightly' }}
strategy:
# If one platform fails, allow the rest to keep testing if `CI-no-fail-fast` label is present
fail-fast: ${{ !contains(github.event.pull_request.labels.*.name, 'CI-no-fail-fast') }}
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain: [1.54.0, stable, nightly]
Expand Down

0 comments on commit 5ece9b1

Please sign in to comment.