]> git.lizzy.rs Git - rust.git/blob - src/ci/github-actions/ci.yml
Rollup merge of #75837 - GuillaumeGomez:fix-font-color-help-button, r=Cldfire
[rust.git] / src / ci / github-actions / ci.yml
1 ######################################################
2 #   WARNING! Action needed when changing this file   #
3 ######################################################
4
5 # Due to GitHub Actions limitations, we can't use YAML Anchors directly in the
6 # CI configuration stored on the repository. To work around that this file is
7 # expanded by a tool in the repository, and the expansion is committed as well.
8 #
9 # After you make any change to the file you'll need to run this command:
10 #
11 #   ./x.py run src/tools/expand-yaml-anchors
12 #
13 # ...and commit the file it updated in addition to this one. If you forget this
14 # step CI will fail.
15
16 ---
17
18 ###############################
19 #   YAML Anchors Definition   #
20 ###############################
21
22 # This key contains most of the YAML anchors that will be used later in the
23 # document. YAML anchors allows us to greatly reduce duplication inside the CI
24 # configuration by reusing parts of the configuration.
25 #
26 # YAML anchors work by defining an anchor with `&anchor-name` and reusing its
27 # content in another place with `*anchor-name`. The special `<<` map key merges
28 # the content of the map with the content of the anchor (or list of anchors).
29 #
30 # The expand-yaml-anchors tool will automatically remove this block from the
31 # output YAML file.
32 x--expand-yaml-anchors--remove:
33
34   - &shared-ci-variables
35     CI_JOB_NAME: ${{ matrix.name }}
36
37   - &public-variables
38     SCCACHE_BUCKET: rust-lang-ci-sccache2
39     TOOLSTATE_REPO: https://github.com/rust-lang-nursery/rust-toolstate
40     CACHE_DOMAIN: ci-caches.rust-lang.org
41
42   - &prod-variables
43     SCCACHE_BUCKET: rust-lang-ci-sccache2
44     DEPLOY_BUCKET: rust-lang-ci2
45     TOOLSTATE_REPO: https://github.com/rust-lang-nursery/rust-toolstate
46     TOOLSTATE_ISSUES_API_URL: https://api.github.com/repos/rust-lang/rust/issues
47     TOOLSTATE_PUBLISH: 1
48     # AWS_SECRET_ACCESS_KEYs are stored in GitHub's secrets storage, named
49     # AWS_SECRET_ACCESS_KEY_<keyid>. Including the key id in the name allows to
50     # rotate them in a single branch while keeping the old key in another
51     # branch, which wouldn't be possible if the key was named with the kind
52     # (caches, artifacts...).
53     CACHES_AWS_ACCESS_KEY_ID: AKIA46X5W6CZI5DHEBFL
54     ARTIFACTS_AWS_ACCESS_KEY_ID: AKIA46X5W6CZN24CBO55
55     CACHE_DOMAIN: ci-caches.rust-lang.org
56
57   - &dummy-variables
58     SCCACHE_BUCKET: rust-lang-gha-caches
59     DEPLOY_BUCKET: rust-lang-gha
60     TOOLSTATE_REPO: https://github.com/pietroalbini/rust-toolstate
61     TOOLSTATE_ISSUES_API_URL: https://api.github.com/repos/pietroalbini/rust-toolstate/issues
62     TOOLSTATE_PUBLISH: 1
63     # AWS_SECRET_ACCESS_KEYs are stored in GitHub's secrets storage, named
64     # AWS_SECRET_ACCESS_KEY_<keyid>. Including the key id in the name allows to
65     # rotate them in a single branch while keeping the old key in another
66     # branch, which wouldn't be possible if the key was named with the kind
67     # (caches, artifacts...).
68     CACHES_AWS_ACCESS_KEY_ID: AKIA46X5W6CZOMUQATD5
69     ARTIFACTS_AWS_ACCESS_KEY_ID: AKIA46X5W6CZH5AYXDVF
70     CACHE_DOMAIN: ci-caches-gha.rust-lang.org
71
72   - &base-job
73     env: {}
74
75   - &job-linux-xl
76     os: ubuntu-latest-xl
77     <<: *base-job
78
79   - &job-macos-xl
80     os: macos-latest  # We don't have an XL builder for this
81     <<: *base-job
82
83   - &job-windows-xl
84     os: windows-latest-xl
85     <<: *base-job
86
87   - &job-aarch64-linux
88     os: [self-hosted, ARM64, linux]
89
90   - &step
91     if: success() && !env.SKIP_JOB
92
93   - &base-ci-job
94     timeout-minutes: 600
95     runs-on: "${{ matrix.os }}"
96     env: *shared-ci-variables
97     steps:
98       - name: disable git crlf conversion
99         run: git config --global core.autocrlf false
100
101       - name: checkout the source code
102         uses: actions/checkout@v1
103         with:
104           fetch-depth: 2
105
106       - name: configure GitHub Actions to kill the build when outdated
107         uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
108         with:
109           github_token: "${{ secrets.github_token }}"
110         if: success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'
111         <<: *step
112
113       # Rust Log Analyzer can't currently detect the PR number of a GitHub
114       # Actions build on its own, so a hint in the log message is needed to
115       # point it in the right direction.
116       - name: configure the PR in which the error message will be posted
117         run: echo "[CI_PR_NUMBER=$num]"
118         env:
119           num: ${{ github.event.number }}
120         if: success() && !env.SKIP_JOBS && github.event_name == 'pull_request'
121
122       - name: add extra environment variables
123         run: src/ci/scripts/setup-environment.sh
124         env:
125           # Since it's not possible to merge `${{ matrix.env }}` with the other
126           # variables in `job.<name>.env`, the variables defined in the matrix
127           # are passed to the `setup-environment.sh` script encoded in JSON,
128           # which then uses log commands to actually set them.
129           EXTRA_VARIABLES: ${{ toJson(matrix.env) }}
130         <<: *step
131
132       - name: decide whether to skip this job
133         run: src/ci/scripts/should-skip-this.sh
134         <<: *step
135
136       - name: collect CPU statistics
137         run: src/ci/scripts/collect-cpu-stats.sh
138         <<: *step
139
140       - name: show the current environment
141         run: src/ci/scripts/dump-environment.sh
142         <<: *step
143
144       - name: install awscli
145         run: src/ci/scripts/install-awscli.sh
146         <<: *step
147
148       - name: install sccache
149         run: src/ci/scripts/install-sccache.sh
150         <<: *step
151
152       - name: install clang
153         run: src/ci/scripts/install-clang.sh
154         <<: *step
155
156       - name: install WIX
157         run: src/ci/scripts/install-wix.sh
158         <<: *step
159
160       - name: ensure the build happens on a partition with enough space
161         run: src/ci/scripts/symlink-build-dir.sh
162         <<: *step
163
164       - name: disable git crlf conversion
165         run: src/ci/scripts/disable-git-crlf-conversion.sh
166         <<: *step
167
168       - name: install MSYS2
169         run: src/ci/scripts/install-msys2.sh
170         <<: *step
171
172       - name: install MinGW
173         run: src/ci/scripts/install-mingw.sh
174         <<: *step
175
176       - name: install ninja
177         run: src/ci/scripts/install-ninja.sh
178         <<: *step
179
180       - name: enable ipv6 on Docker
181         run: src/ci/scripts/enable-docker-ipv6.sh
182         <<: *step
183
184       # Disable automatic line ending conversion (again). On Windows, when we're
185       # installing dependencies, something switches the git configuration directory or
186       # re-enables autocrlf. We've not tracked down the exact cause -- and there may
187       # be multiple -- but this should ensure submodules are checked out with the
188       # appropriate line endings.
189       - name: disable git crlf conversion
190         run: src/ci/scripts/disable-git-crlf-conversion.sh
191         <<: *step
192
193       - name: checkout submodules
194         run: src/ci/scripts/checkout-submodules.sh
195         <<: *step
196
197       - name: ensure line endings are correct
198         run: src/ci/scripts/verify-line-endings.sh
199         <<: *step
200
201       - name: run the build
202         run: src/ci/scripts/run-build-from-ci.sh
203         env:
204           AWS_ACCESS_KEY_ID: ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
205           AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
206           TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
207         <<: *step
208
209       - name: upload artifacts to S3
210         run: src/ci/scripts/upload-artifacts.sh
211         env:
212           AWS_ACCESS_KEY_ID: ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}
213           AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}
214         # Adding a condition on DEPLOY=1 or DEPLOY_ALT=1 is not needed as all deploy
215         # builders *should* have the AWS credentials available. Still, explicitly
216         # adding the condition is helpful as this way CI will not silently skip
217         # deploying artifacts from a dist builder if the variables are misconfigured,
218         # erroring about invalid credentials instead.
219         if: success() && !env.SKIP_JOB && (github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')
220         <<: *step
221
222   # These snippets are used by the try-success, try-failure, auto-success and auto-failure jobs.
223   # Check out their documentation for more information on why they're needed.
224
225   - &base-outcome-job
226     name: bors build finished
227     runs-on: ubuntu-latest
228
229   - &base-success-job
230     steps:
231       - name: mark the job as a success
232         run: exit 0
233         shell: bash
234     <<: *base-outcome-job
235
236   - &base-failure-job
237     steps:
238       - name: mark the job as a failure
239         run: exit 1
240         shell: bash
241     <<: *base-outcome-job
242
243 ###########################
244 #   Builders definition   #
245 ###########################
246
247 name: CI
248 on:
249   push:
250     branches:
251       - auto
252       - try
253       - try-perf
254       - master
255   pull_request:
256     branches:
257       - "**"
258
259 defaults:
260   run:
261     # On Linux, macOS, and Windows, use the system-provided bash as the default
262     # shell. (This should only make a difference on Windows, where the default
263     # shell is PowerShell.)
264     shell: bash
265
266 jobs:
267   pr:
268     <<: *base-ci-job
269     name: PR
270     env:
271       <<: [*shared-ci-variables, *public-variables]
272     if: github.event_name == 'pull_request'
273     strategy:
274       matrix:
275         include:
276           - name: mingw-check
277             <<: *job-linux-xl
278
279           - name: x86_64-gnu-llvm-8
280             <<: *job-linux-xl
281
282           - name: x86_64-gnu-tools
283             env:
284               CI_ONLY_WHEN_SUBMODULES_CHANGED: 1
285             <<: *job-linux-xl
286
287   try:
288     <<: *base-ci-job
289     name: try
290     env:
291       <<: [*shared-ci-variables, *prod-variables]
292     if: github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'
293     strategy:
294       matrix:
295         include:
296           - name: dist-x86_64-linux
297             <<: *job-linux-xl
298
299   auto:
300     <<: *base-ci-job
301     name: auto
302     env:
303       <<: [*shared-ci-variables, *prod-variables]
304     if: github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'
305     strategy:
306       matrix:
307         include:
308           #############################
309           #   Linux/Docker builders   #
310           #############################
311
312           - name: arm-android
313             <<: *job-linux-xl
314
315           - name: armhf-gnu
316             <<: *job-linux-xl
317
318           - name: dist-aarch64-linux
319             <<: *job-linux-xl
320
321           - name: dist-android
322             <<: *job-linux-xl
323
324           - name: dist-arm-linux
325             <<: *job-linux-xl
326
327           - name: dist-armhf-linux
328             <<: *job-linux-xl
329
330           - name: dist-armv7-linux
331             <<: *job-linux-xl
332
333           - name: dist-i586-gnu-i586-i686-musl
334             <<: *job-linux-xl
335
336           - name: dist-i686-freebsd
337             <<: *job-linux-xl
338
339           - name: dist-i686-linux
340             <<: *job-linux-xl
341
342           - name: dist-mips-linux
343             <<: *job-linux-xl
344
345           - name: dist-mips64-linux
346             <<: *job-linux-xl
347
348           - name: dist-mips64el-linux
349             <<: *job-linux-xl
350
351           - name: dist-mipsel-linux
352             <<: *job-linux-xl
353
354           - name: dist-powerpc-linux
355             <<: *job-linux-xl
356
357           - name: dist-powerpc64-linux
358             <<: *job-linux-xl
359
360           - name: dist-powerpc64le-linux
361             <<: *job-linux-xl
362
363           - name: dist-riscv64-linux
364             <<: *job-linux-xl
365
366           - name: dist-s390x-linux
367             <<: *job-linux-xl
368
369           - name: dist-various-1
370             <<: *job-linux-xl
371
372           - name: dist-various-2
373             <<: *job-linux-xl
374
375           - name: dist-x86_64-freebsd
376             <<: *job-linux-xl
377
378           - name: dist-x86_64-illumos
379             <<: *job-linux-xl
380
381           - name: dist-x86_64-linux
382             <<: *job-linux-xl
383
384           - name: dist-x86_64-linux-alt
385             env:
386               IMAGE: dist-x86_64-linux
387             <<: *job-linux-xl
388
389           - name: dist-x86_64-musl
390             <<: *job-linux-xl
391
392           - name: dist-x86_64-netbsd
393             <<: *job-linux-xl
394
395           - name: i686-gnu
396             <<: *job-linux-xl
397
398           - name: i686-gnu-nopt
399             <<: *job-linux-xl
400
401           - name: mingw-check
402             <<: *job-linux-xl
403
404           - name: test-various
405             <<: *job-linux-xl
406
407           - name: wasm32
408             <<: *job-linux-xl
409
410           - name: x86_64-gnu
411             <<: *job-linux-xl
412
413           - name: x86_64-gnu-aux
414             <<: *job-linux-xl
415
416           - name: x86_64-gnu-debug
417             <<: *job-linux-xl
418
419           - name: x86_64-gnu-distcheck
420             <<: *job-linux-xl
421
422           - name: x86_64-gnu-llvm-8
423             env:
424               RUST_BACKTRACE: 1
425             <<: *job-linux-xl
426
427           - name: x86_64-gnu-nopt
428             <<: *job-linux-xl
429
430           - name: x86_64-gnu-tools
431             env:
432               DEPLOY_TOOLSTATES_JSON: toolstates-linux.json
433             <<: *job-linux-xl
434
435           ######################
436           #  Windows Builders  #
437           ######################
438
439           - name: x86_64-msvc-1
440             env:
441               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
442               SCRIPT: make ci-subset-1
443               # FIXME(#59637)
444               NO_DEBUG_ASSERTIONS: 1
445               NO_LLVM_ASSERTIONS: 1
446             <<: *job-windows-xl
447
448           - name: x86_64-msvc-2
449             env:
450               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
451               SCRIPT: make ci-subset-2
452             <<: *job-windows-xl
453
454           - name: i686-msvc-1
455             env:
456               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
457               SCRIPT: make ci-subset-1
458               # FIXME(#59637)
459               NO_DEBUG_ASSERTIONS: 1
460               NO_LLVM_ASSERTIONS: 1
461             <<: *job-windows-xl
462
463           - name: i686-msvc-2
464             env:
465               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
466               SCRIPT: make ci-subset-2
467               # FIXME(#59637)
468               NO_DEBUG_ASSERTIONS: 1
469               NO_LLVM_ASSERTIONS: 1
470             <<: *job-windows-xl
471
472           - name: x86_64-msvc-cargo
473             env:
474               SCRIPT: python x.py --stage 2 test src/tools/cargotest src/tools/cargo
475               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-lld
476               VCVARS_BAT: vcvars64.bat
477               # FIXME(#59637)
478               NO_DEBUG_ASSERTIONS: 1
479               NO_LLVM_ASSERTIONS: 1
480             <<: *job-windows-xl
481
482           - name: x86_64-msvc-tools
483             env:
484               SCRIPT: src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstate/toolstates.json windows
485               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstate/toolstates.json
486             <<: *job-windows-xl
487
488           # 32/64-bit MinGW builds.
489           #
490           # We are using MinGW with POSIX threads since LLVM requires
491           # C++'s std::thread which is disabled in libstdc++ with win32 threads.
492           # FIXME: Libc++ doesn't have this limitation so we can avoid 
493           # winpthreads if we switch to it.
494           #
495           # Instead of relying on the MinGW version installed on CI we download
496           # and install one ourselves so we won't be surprised by changes to CI's
497           # build image.
498           #
499           # Finally, note that the downloads below are all in the `rust-lang-ci` S3
500           # bucket, but they clearly didn't originate there! The downloads originally
501           # came from the mingw-w64 SourceForge download site. Unfortunately
502           # SourceForge is notoriously flaky, so we mirror it on our own infrastructure.
503
504           - name: i686-mingw-1
505             env:
506               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
507               SCRIPT: make ci-mingw-subset-1
508               CUSTOM_MINGW: 1
509               # FIXME(#59637)
510               NO_DEBUG_ASSERTIONS: 1
511               NO_LLVM_ASSERTIONS: 1
512             <<: *job-windows-xl
513
514           - name: i686-mingw-2
515             env:
516               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
517               SCRIPT: make ci-mingw-subset-2
518               CUSTOM_MINGW: 1
519             <<: *job-windows-xl
520
521           - name: x86_64-mingw-1
522             env:
523               SCRIPT: make ci-mingw-subset-1
524               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu
525               CUSTOM_MINGW: 1
526               # FIXME(#59637)
527               NO_DEBUG_ASSERTIONS: 1
528               NO_LLVM_ASSERTIONS: 1
529             <<: *job-windows-xl
530
531           - name: x86_64-mingw-2
532             env:
533               SCRIPT: make ci-mingw-subset-2
534               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu
535               CUSTOM_MINGW: 1
536             <<: *job-windows-xl
537
538           - name: dist-x86_64-msvc
539             env:
540               RUST_CONFIGURE_ARGS: >-
541                 --build=x86_64-pc-windows-msvc
542                 --target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc
543                 --enable-full-tools
544                 --enable-profiler
545               SCRIPT: python x.py dist
546               DIST_REQUIRE_ALL_TOOLS: 1
547             <<: *job-windows-xl
548
549           - name: dist-i686-msvc
550             env:
551               RUST_CONFIGURE_ARGS: >-
552                 --build=i686-pc-windows-msvc
553                 --target=i586-pc-windows-msvc
554                 --enable-full-tools
555                 --enable-profiler
556               SCRIPT: python x.py dist
557               DIST_REQUIRE_ALL_TOOLS: 1
558             <<: *job-windows-xl
559
560           - name: dist-i686-mingw
561             env:
562               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-full-tools --enable-profiler
563               SCRIPT: python x.py dist
564               CUSTOM_MINGW: 1
565               DIST_REQUIRE_ALL_TOOLS: 1
566             <<: *job-windows-xl
567
568           - name: dist-x86_64-mingw
569             env:
570               SCRIPT: python x.py dist
571               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-full-tools --enable-profiler
572               CUSTOM_MINGW: 1
573               DIST_REQUIRE_ALL_TOOLS: 1
574             <<: *job-windows-xl
575
576           - name: dist-x86_64-msvc-alt
577             env:
578               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler
579               SCRIPT: python x.py dist
580             <<: *job-windows-xl
581
582   auto-fallible:
583     <<: *base-ci-job
584     name: auto-fallible
585     env:
586       <<: [*shared-ci-variables, *dummy-variables]
587     if: github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'
588     strategy:
589       fail-fast: false
590       matrix:
591         include:
592           #############################
593           #   Linux/Docker builders   #
594           #############################
595
596           - name: aarch64-gnu
597             <<: *job-aarch64-linux
598
599           ####################
600           #  macOS Builders  #
601           ####################
602
603           - name: dist-x86_64-apple
604             env:
605               SCRIPT: ./x.py dist
606               RUST_CONFIGURE_ARGS: --target=aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc
607               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
608               MACOSX_DEPLOYMENT_TARGET: 10.7
609               NO_LLVM_ASSERTIONS: 1
610               NO_DEBUG_ASSERTIONS: 1
611               DIST_REQUIRE_ALL_TOOLS: 1
612             <<: *job-macos-xl
613
614           - name: dist-x86_64-apple-alt
615             env:
616               SCRIPT: ./x.py dist
617               RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --set rust.jemalloc
618               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
619               MACOSX_DEPLOYMENT_TARGET: 10.7
620               NO_LLVM_ASSERTIONS: 1
621               NO_DEBUG_ASSERTIONS: 1
622             <<: *job-macos-xl
623
624           - name: x86_64-apple
625             env:
626               SCRIPT: ./x.py --stage 2 test
627               RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc
628               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
629               MACOSX_DEPLOYMENT_TARGET: 10.8
630               MACOSX_STD_DEPLOYMENT_TARGET: 10.7
631               NO_LLVM_ASSERTIONS: 1
632               NO_DEBUG_ASSERTIONS: 1
633             <<: *job-macos-xl
634
635   master:
636     name: master
637     runs-on: ubuntu-latest
638     env:
639       <<: [*prod-variables]
640     if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'rust-lang-ci/rust'
641     steps:
642       - name: checkout the source code
643         uses: actions/checkout@v1
644         with:
645           fetch-depth: 2
646
647       - name: publish toolstate
648         run: src/ci/publish_toolstate.sh
649         shell: bash
650         env:
651           TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
652         <<: *step
653
654   # These jobs don't actually test anything, but they're used to tell bors the
655   # build completed, as there is no practical way to detect when a workflow is
656   # successful listening to webhooks only.
657   try-success:
658     needs: [try]
659     if: "success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
660     <<: *base-success-job
661   try-failure:
662     needs: [try]
663     if: "!success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
664     <<: *base-failure-job
665   auto-success:
666     needs: [auto]
667     if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
668     <<: *base-success-job
669   auto-failure:
670     needs: [auto]
671     if: "!success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
672     <<: *base-failure-job