File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -137,3 +137,20 @@ jobs:
137
137
- uses : Swatinem/rust-cache@v2
138
138
- run : cargo doc
139
139
140
+ success :
141
+ needs :
142
+ - clippy
143
+ - test
144
+ - cross_compile_test
145
+ - ios_cross_compile_test
146
+ - rustfmt
147
+ - doc
148
+ runs-on : ubuntu-latest
149
+ # GitHub branch protection is exceedingly silly and treats "jobs skipped because a dependency
150
+ # failed" as success. So we have to do some contortions to ensure the job fails if any of its
151
+ # dependencies fails.
152
+ if : always() # make sure this is never "skipped"
153
+ steps :
154
+ # Manually check the status of all dependencies. `if: failure()` does not work.
155
+ - name : check if any dependency failed
156
+ run : jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
You can’t perform that action at this time.
0 commit comments