Skip to content

Commit

Permalink
undo fail-fast thing
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jul 4, 2020
1 parent b1560e9 commit 69915d2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,14 @@ jobs:
- os: ubuntu-16.04
kind: lint

fail-fast: false
# Always run master branch builds to completion. This allows the cache to
# stay mostly up-to-date in situations where a single job fails due to
# e.g. a flaky test.
# Don't fast-fail on tag build because publishing binaries shouldn't be
# prevented if 'cargo publish' fails (which can be a false negative).
fail-fast:
${{ github.event_name == 'pull_request' || (github.ref !=
'refs/heads/master' && !startsWith(github.ref, 'refs/tags/')) }}

env:
CARGO_INCREMENTAL: 0
Expand Down

0 comments on commit 69915d2

Please sign in to comment.