Skip to content

Commit

Permalink
ci: remove ci-failure
Browse files Browse the repository at this point in the history
bors-ng now consider skipped job as fail.
  • Loading branch information
taiki-e committed Dec 30, 2020
1 parent 6bc4e6d commit 102a3d1
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
- uses: actions/checkout@v2
- run: shellcheck **/*.sh

# These jobs don't actually test anything, but they're used to tell bors the
# This job doesn't actually test anything, but they're used to tell bors the
# build completed, as there is no practical way to detect when a workflow is
# successful listening to webhooks only.
#
Expand All @@ -150,19 +150,3 @@ jobs:
steps:
- name: Mark the job as a success
run: exit 0
ci-failure:
name: ci
if: github.event_name == 'push' && !success()
needs:
- test
- build
- expandtest
- miri
- clippy
- rustfmt
- rustdoc
- shellcheck
runs-on: ubuntu-latest
steps:
- name: Mark the job as a failure
run: exit 1

0 comments on commit 102a3d1

Please sign in to comment.