File tree 1 file changed +5
-4
lines changed
src/tools/miri/.github/workflows
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 34
34
# The `style` job only runs on Linux; this makes sure the Windows-host-specific
35
35
# code is also covered by clippy.
36
36
- name : Check clippy
37
- if : matrix.os == 'windows-latest'
37
+ if : ${{ matrix.os == 'windows-latest' }}
38
38
run : ./miri clippy -- -D warnings
39
39
40
40
- name : Test Miri
@@ -58,14 +58,15 @@ jobs:
58
58
- name : rustdoc
59
59
run : RUSTDOCFLAGS="-Dwarnings" ./miri doc --document-private-items
60
60
61
+ # Summary job for the merge queue.
62
+ # ALL THE PREVIOUS JOBS NEED TO BE ADDED TO THE `needs` SECTION OF THIS JOB!
63
+ # And they should be added below in `cron-fail-notify` as well.
61
64
conclusion :
62
65
needs : [build, style]
63
66
# We need to ensure this job does *not* get skipped if its dependencies fail,
64
67
# because a skipped job is considered a success by GitHub. So we have to
65
68
# overwrite `if:`. We use `!cancelled()` to ensure the job does still not get run
66
69
# when the workflow is canceled manually.
67
- #
68
- # ALL THE PREVIOUS JOBS NEED TO BE ADDED TO THE `needs` SECTION OF THIS JOB!
69
70
if : ${{ !cancelled() }}
70
71
runs-on : ubuntu-latest
71
72
steps :
86
87
# ... and create a PR.
87
88
pull-requests : write
88
89
needs : [build, style]
89
- if : github.event_name == 'schedule' && failure()
90
+ if : ${{ github.event_name == 'schedule' && failure() }}
90
91
steps :
91
92
# Send a Zulip notification
92
93
- name : Install zulip-send
You can’t perform that action at this time.
0 commit comments