Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,15 @@ jobs:
# This is here so that the "Status checks that are required" Github
# option doesn't need to list all of the matrix jobs (it doesn't seem
# to work if you just specify the job ID of the matrix itself).
# A skipped job is considered passing by GitHub, so this job needs to
# always run and then checks the results of all of the jobs it depends on.
ci_pass:
runs-on: ubuntu-latest
needs: [build, linux]
if: "${{ always() }}"
Comment thread
jordancarlin marked this conversation as resolved.
steps:
- name: Dummy
run: echo 'Jobs need at least one step.'
- name: exit failure
if: "${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}"
run: exit 1
- name: exit success
run: exit 0
Comment thread
jordancarlin marked this conversation as resolved.
Loading