]> git.lizzy.rs Git - rust.git/blob - src/ci/github-actions/ci.yml
f92e46b0a97f657918b029490359da5f948a0961
[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-20.04-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@v3
103         with:
104           fetch-depth: 2
105
106       # Rust Log Analyzer can't currently detect the PR number of a GitHub
107       # Actions build on its own, so a hint in the log message is needed to
108       # point it in the right direction.
109       - name: configure the PR in which the error message will be posted
110         run: echo "[CI_PR_NUMBER=$num]"
111         env:
112           num: ${{ github.event.number }}
113         if: success() && !env.SKIP_JOB && github.event_name == 'pull_request'
114
115       - name: add extra environment variables
116         run: src/ci/scripts/setup-environment.sh
117         env:
118           # Since it's not possible to merge `${{ matrix.env }}` with the other
119           # variables in `job.<name>.env`, the variables defined in the matrix
120           # are passed to the `setup-environment.sh` script encoded in JSON,
121           # which then uses log commands to actually set them.
122           EXTRA_VARIABLES: ${{ toJson(matrix.env) }}
123         <<: *step
124
125       - name: decide whether to skip this job
126         run: src/ci/scripts/should-skip-this.sh
127         <<: *step
128
129       - name: ensure the channel matches the target branch
130         run: src/ci/scripts/verify-channel.sh
131         <<: *step
132
133       - name: configure GitHub Actions to kill the build when outdated
134         uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
135         with:
136           github_token: "${{ secrets.github_token }}"
137         if: success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'
138         <<: *step
139
140       - name: collect CPU statistics
141         run: src/ci/scripts/collect-cpu-stats.sh
142         <<: *step
143
144       - name: show the current environment
145         run: src/ci/scripts/dump-environment.sh
146         <<: *step
147
148       - name: install awscli
149         run: src/ci/scripts/install-awscli.sh
150         <<: *step
151
152       - name: install sccache
153         run: src/ci/scripts/install-sccache.sh
154         <<: *step
155
156       - name: install clang
157         run: src/ci/scripts/install-clang.sh
158         <<: *step
159
160       - name: install WIX
161         run: src/ci/scripts/install-wix.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: checkout submodules
169         run: src/ci/scripts/checkout-submodules.sh
170         <<: *step
171
172       - name: install MSYS2
173         run: src/ci/scripts/install-msys2.sh
174         <<: *step
175
176       - name: install MinGW
177         run: src/ci/scripts/install-mingw.sh
178         <<: *step
179
180       - name: install ninja
181         run: src/ci/scripts/install-ninja.sh
182         <<: *step
183
184       - name: enable ipv6 on Docker
185         run: src/ci/scripts/enable-docker-ipv6.sh
186         <<: *step
187
188       # Disable automatic line ending conversion (again). On Windows, when we're
189       # installing dependencies, something switches the git configuration directory or
190       # re-enables autocrlf. We've not tracked down the exact cause -- and there may
191       # be multiple -- but this should ensure submodules are checked out with the
192       # appropriate line endings.
193       - name: disable git crlf conversion
194         run: src/ci/scripts/disable-git-crlf-conversion.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: ensure backported commits are in upstream branches
202         run: src/ci/scripts/verify-backported-commits.sh
203         <<: *step
204
205       - name: ensure the stable version number is correct
206         run: src/ci/scripts/verify-stable-version-number.sh
207         <<: *step
208
209       - name: run the build
210         run: src/ci/scripts/run-build-from-ci.sh
211         env:
212           AWS_ACCESS_KEY_ID: ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
213           AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
214           TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
215         <<: *step
216
217       - name: upload artifacts to S3
218         run: src/ci/scripts/upload-artifacts.sh
219         env:
220           AWS_ACCESS_KEY_ID: ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}
221           AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}
222         # Adding a condition on DEPLOY=1 or DEPLOY_ALT=1 is not needed as all deploy
223         # builders *should* have the AWS credentials available. Still, explicitly
224         # adding the condition is helpful as this way CI will not silently skip
225         # deploying artifacts from a dist builder if the variables are misconfigured,
226         # erroring about invalid credentials instead.
227         if: success() && !env.SKIP_JOB && (github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')
228         <<: *step
229
230   # These snippets are used by the try-success, try-failure, auto-success and auto-failure jobs.
231   # Check out their documentation for more information on why they're needed.
232
233   - &base-outcome-job
234     name: bors build finished
235     runs-on: ubuntu-latest
236
237   - &base-success-job
238     steps:
239       - name: mark the job as a success
240         run: exit 0
241         shell: bash
242     <<: *base-outcome-job
243
244   - &base-failure-job
245     steps:
246       - name: mark the job as a failure
247         run: exit 1
248         shell: bash
249     <<: *base-outcome-job
250
251 ###########################
252 #   Builders definition   #
253 ###########################
254
255 name: CI
256 on:
257   push:
258     branches:
259       - auto
260       - try
261       - try-perf
262       - master
263   pull_request:
264     branches:
265       - "**"
266
267 defaults:
268   run:
269     # On Linux, macOS, and Windows, use the system-provided bash as the default
270     # shell. (This should only make a difference on Windows, where the default
271     # shell is PowerShell.)
272     shell: bash
273
274 jobs:
275   pr:
276     <<: *base-ci-job
277     name: PR
278     env:
279       <<: [*shared-ci-variables, *public-variables]
280     if: github.event_name == 'pull_request'
281     strategy:
282       matrix:
283         include:
284           - name: mingw-check
285             <<: *job-linux-xl
286
287           - name: x86_64-gnu-llvm-12
288             <<: *job-linux-xl
289
290           - name: x86_64-gnu-tools
291             env:
292               CI_ONLY_WHEN_SUBMODULES_CHANGED: 1
293             <<: *job-linux-xl
294
295   auto:
296     <<: *base-ci-job
297     name: auto
298     env:
299       <<: [*shared-ci-variables, *prod-variables]
300     if: github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'
301     strategy:
302       matrix:
303         include:
304           #############################
305           #   Linux/Docker builders   #
306           #############################
307
308           - name: aarch64-gnu
309             <<: *job-aarch64-linux
310
311           - name: arm-android
312             <<: *job-linux-xl
313
314           - name: armhf-gnu
315             <<: *job-linux-xl
316
317           - name: dist-aarch64-linux
318             <<: *job-linux-xl
319
320           - name: dist-android
321             <<: *job-linux-xl
322
323           - name: dist-arm-linux
324             <<: *job-linux-xl
325
326           - name: dist-armhf-linux
327             <<: *job-linux-xl
328
329           - name: dist-armv7-linux
330             <<: *job-linux-xl
331
332           - name: dist-i586-gnu-i586-i686-musl
333             <<: *job-linux-xl
334
335           - name: dist-i686-linux
336             <<: *job-linux-xl
337
338           - name: dist-mips-linux
339             <<: *job-linux-xl
340
341           - name: dist-mips64-linux
342             <<: *job-linux-xl
343
344           - name: dist-mips64el-linux
345             <<: *job-linux-xl
346
347           - name: dist-mipsel-linux
348             <<: *job-linux-xl
349
350           - name: dist-powerpc-linux
351             <<: *job-linux-xl
352
353           - name: dist-powerpc64-linux
354             <<: *job-linux-xl
355
356           - name: dist-powerpc64le-linux
357             <<: *job-linux-xl
358
359           - name: dist-riscv64-linux
360             <<: *job-linux-xl
361
362           - name: dist-s390x-linux
363             <<: *job-linux-xl
364
365           - name: dist-various-1
366             <<: *job-linux-xl
367
368           - name: dist-various-2
369             <<: *job-linux-xl
370
371           - name: dist-x86_64-freebsd
372             <<: *job-linux-xl
373
374           - name: dist-x86_64-illumos
375             <<: *job-linux-xl
376
377           - &dist-x86_64-linux
378             name: dist-x86_64-linux
379             <<: *job-linux-xl
380
381           - name: dist-x86_64-linux-alt
382             env:
383               IMAGE: dist-x86_64-linux
384             <<: *job-linux-xl
385
386           - name: dist-x86_64-musl
387             <<: *job-linux-xl
388
389           - name: dist-x86_64-netbsd
390             <<: *job-linux-xl
391
392           - name: i686-gnu
393             <<: *job-linux-xl
394
395           - name: i686-gnu-nopt
396             <<: *job-linux-xl
397
398           - name: mingw-check
399             <<: *job-linux-xl
400
401           - name: test-various
402             <<: *job-linux-xl
403
404           - name: wasm32
405             <<: *job-linux-xl
406
407           - name: x86_64-gnu
408             <<: *job-linux-xl
409
410           # This job ensures commits landing on nightly still pass the full
411           # test suite on the stable channel. There are some UI tests that
412           # depend on the channel being built (for example if they include the
413           # channel name on the output), and this builder prevents landing
414           # changes that would result in broken builds after a promotion.
415           - name: x86_64-gnu-stable
416             env:
417               IMAGE: x86_64-gnu
418               RUST_CI_OVERRIDE_RELEASE_CHANNEL: stable
419               # Only run this job on the nightly channel. Running this on beta
420               # could cause failures when `dev: 1` in `stage0.txt`, and running
421               # this on stable is useless.
422               CI_ONLY_WHEN_CHANNEL: nightly
423             <<: *job-linux-xl
424
425           - name: x86_64-gnu-aux
426             <<: *job-linux-xl
427
428           - name: x86_64-gnu-debug
429             <<: *job-linux-xl
430
431           - name: x86_64-gnu-distcheck
432             <<: *job-linux-xl
433
434           - name: x86_64-gnu-llvm-12
435             env:
436               RUST_BACKTRACE: 1
437             <<: *job-linux-xl
438
439           - name: x86_64-gnu-nopt
440             <<: *job-linux-xl
441
442           - name: x86_64-gnu-tools
443             env:
444               DEPLOY_TOOLSTATES_JSON: toolstates-linux.json
445             <<: *job-linux-xl
446
447           ####################
448           #  macOS Builders  #
449           ####################
450
451           - name: dist-x86_64-apple
452             env:
453               SCRIPT: ./x.py dist --host=x86_64-apple-darwin --target=x86_64-apple-darwin
454               RUST_CONFIGURE_ARGS: --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
455               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
456               MACOSX_DEPLOYMENT_TARGET: 10.7
457               NO_LLVM_ASSERTIONS: 1
458               NO_DEBUG_ASSERTIONS: 1
459               NO_OVERFLOW_CHECKS: 1
460               DIST_REQUIRE_ALL_TOOLS: 1
461             <<: *job-macos-xl
462
463           - name: dist-apple-various
464             env:
465               SCRIPT: ./x.py dist --host='' --target=aarch64-apple-ios,x86_64-apple-ios,aarch64-apple-ios-sim
466               RUST_CONFIGURE_ARGS: --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
467               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
468               MACOSX_DEPLOYMENT_TARGET: 10.7
469               NO_LLVM_ASSERTIONS: 1
470               NO_DEBUG_ASSERTIONS: 1
471               NO_OVERFLOW_CHECKS: 1
472             <<: *job-macos-xl
473
474           - name: dist-x86_64-apple-alt
475             env:
476               SCRIPT: ./x.py dist
477               RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --set rust.jemalloc --set llvm.ninja=false
478               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
479               MACOSX_DEPLOYMENT_TARGET: 10.7
480               NO_LLVM_ASSERTIONS: 1
481               NO_DEBUG_ASSERTIONS: 1
482               NO_OVERFLOW_CHECKS: 1
483             <<: *job-macos-xl
484
485           - name: x86_64-apple-1
486             env: &env-x86_64-apple-tests
487               SCRIPT: ./x.py --stage 2 test --exclude src/test/ui --exclude src/test/rustdoc --exclude src/test/run-make-fulldeps
488               RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
489               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
490               MACOSX_DEPLOYMENT_TARGET: 10.8
491               MACOSX_STD_DEPLOYMENT_TARGET: 10.7
492               NO_LLVM_ASSERTIONS: 1
493               NO_DEBUG_ASSERTIONS: 1
494               NO_OVERFLOW_CHECKS: 1
495             <<: *job-macos-xl
496
497           - name: x86_64-apple-2
498             env:
499               SCRIPT: ./x.py --stage 2 test src/test/ui src/test/rustdoc src/test/run-make-fulldeps
500               <<: *env-x86_64-apple-tests
501             <<: *job-macos-xl
502
503           # This target only needs to support 11.0 and up as nothing else supports the hardware
504           - name: dist-aarch64-apple
505             env:
506               SCRIPT: ./x.py dist --stage 2
507               RUST_CONFIGURE_ARGS: >-
508                 --build=x86_64-apple-darwin
509                 --host=aarch64-apple-darwin
510                 --target=aarch64-apple-darwin
511                 --enable-full-tools
512                 --enable-sanitizers
513                 --enable-profiler
514                 --disable-docs
515                 --set rust.jemalloc
516                 --set llvm.ninja=false
517               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
518               USE_XCODE_CLANG: 1
519               MACOSX_DEPLOYMENT_TARGET: 11.0
520               MACOSX_STD_DEPLOYMENT_TARGET: 11.0
521               NO_LLVM_ASSERTIONS: 1
522               NO_DEBUG_ASSERTIONS: 1
523               NO_OVERFLOW_CHECKS: 1
524               DIST_REQUIRE_ALL_TOOLS: 1
525               # Corresponds to 16K page size
526               #
527               # Shouldn't be needed if jemalloc-sys is updated to
528               # handle this platform like iOS or if we build on
529               # aarch64-apple-darwin itself.
530               #
531               # https://github.com/gnzlbg/jemallocator/blob/c27a859e98e3cb790dc269773d9da71a1e918458/jemalloc-sys/build.rs#L237
532               JEMALLOC_SYS_WITH_LG_PAGE: 14
533             <<: *job-macos-xl
534
535           ######################
536           #  Windows Builders  #
537           ######################
538
539           - name: x86_64-msvc-1
540             env:
541               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
542               SCRIPT: make ci-subset-1
543             <<: *job-windows-xl
544
545           - name: x86_64-msvc-2
546             env:
547               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
548               SCRIPT: make ci-subset-2
549             <<: *job-windows-xl
550
551           - name: i686-msvc-1
552             env:
553               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
554               SCRIPT: make ci-subset-1
555             <<: *job-windows-xl
556
557           - name: i686-msvc-2
558             env:
559               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
560               SCRIPT: make ci-subset-2
561             <<: *job-windows-xl
562
563           - name: x86_64-msvc-cargo
564             env:
565               SCRIPT: python x.py --stage 2 test src/tools/cargotest src/tools/cargo
566               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-lld
567             <<: *job-windows-xl
568
569           - name: x86_64-msvc-tools
570             env:
571               SCRIPT: src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstate/toolstates.json windows
572               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstate/toolstates.json
573               DEPLOY_TOOLSTATES_JSON: toolstates-windows.json
574             <<: *job-windows-xl
575
576           # 32/64-bit MinGW builds.
577           #
578           # We are using MinGW with POSIX threads since LLVM requires
579           # C++'s std::thread which is disabled in libstdc++ with win32 threads.
580           # FIXME: Libc++ doesn't have this limitation so we can avoid
581           # winpthreads if we switch to it.
582           #
583           # Instead of relying on the MinGW version installed on CI we download
584           # and install one ourselves so we won't be surprised by changes to CI's
585           # build image.
586           #
587           # Finally, note that the downloads below are all in the `rust-lang-ci` S3
588           # bucket, but they clearly didn't originate there! The downloads originally
589           # came from the mingw-w64 SourceForge download site. Unfortunately
590           # SourceForge is notoriously flaky, so we mirror it on our own infrastructure.
591
592           - name: i686-mingw-1
593             env:
594               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
595               SCRIPT: make ci-mingw-subset-1
596               CUSTOM_MINGW: 1
597             <<: *job-windows-xl
598
599           - name: i686-mingw-2
600             env:
601               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
602               SCRIPT: make ci-mingw-subset-2
603               CUSTOM_MINGW: 1
604             <<: *job-windows-xl
605
606           - name: x86_64-mingw-1
607             env:
608               SCRIPT: make ci-mingw-subset-1
609               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-profiler
610               CUSTOM_MINGW: 1
611             <<: *job-windows-xl
612
613           - name: x86_64-mingw-2
614             env:
615               SCRIPT: make ci-mingw-subset-2
616               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-profiler
617               CUSTOM_MINGW: 1
618             <<: *job-windows-xl
619
620           - name: dist-x86_64-msvc
621             env:
622               RUST_CONFIGURE_ARGS: >-
623                 --build=x86_64-pc-windows-msvc
624                 --host=x86_64-pc-windows-msvc
625                 --target=x86_64-pc-windows-msvc
626                 --enable-full-tools
627                 --enable-profiler
628               SCRIPT: PGO_HOST=x86_64-pc-windows-msvc src/ci/pgo.sh python x.py dist
629               DIST_REQUIRE_ALL_TOOLS: 1
630             <<: *job-windows-xl
631
632           - name: dist-i686-msvc
633             env:
634               RUST_CONFIGURE_ARGS: >-
635                 --build=i686-pc-windows-msvc
636                 --host=i686-pc-windows-msvc
637                 --target=i686-pc-windows-msvc,i586-pc-windows-msvc
638                 --enable-full-tools
639                 --enable-profiler
640               SCRIPT: python x.py dist
641               DIST_REQUIRE_ALL_TOOLS: 1
642             <<: *job-windows-xl
643
644           - name: dist-aarch64-msvc
645             env:
646               RUST_CONFIGURE_ARGS: >-
647                 --build=x86_64-pc-windows-msvc
648                 --host=aarch64-pc-windows-msvc
649                 --enable-full-tools
650                 --enable-profiler
651               SCRIPT: python x.py dist
652               # RLS does not build for aarch64-pc-windows-msvc. See rust-lang/rls#1693
653               DIST_REQUIRE_ALL_TOOLS: 0
654               # Hack around this SDK version, because it doesn't work with clang.
655               # See https://github.com/rust-lang/rust/issues/88796
656               WINDOWS_SDK_20348_HACK: 1
657             <<: *job-windows-xl
658
659           - name: dist-i686-mingw
660             env:
661               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-full-tools --enable-profiler
662               SCRIPT: python x.py dist
663               CUSTOM_MINGW: 1
664               DIST_REQUIRE_ALL_TOOLS: 1
665             <<: *job-windows-xl
666
667           - name: dist-x86_64-mingw
668             env:
669               SCRIPT: python x.py dist
670               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-full-tools --enable-profiler
671               CUSTOM_MINGW: 1
672               DIST_REQUIRE_ALL_TOOLS: 1
673             <<: *job-windows-xl
674
675           - name: dist-x86_64-msvc-alt
676             env:
677               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler
678               SCRIPT: python x.py dist
679             <<: *job-windows-xl
680
681   try:
682     <<: *base-ci-job
683     name: try
684     env:
685       <<: [*shared-ci-variables, *prod-variables]
686     if: github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'
687     strategy:
688       matrix:
689         include:
690           - &dist-x86_64-linux
691             name: dist-x86_64-linux
692             <<: *job-linux-xl
693
694   master:
695     name: master
696     runs-on: ubuntu-latest
697     env:
698       <<: [*prod-variables]
699     if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'rust-lang-ci/rust'
700     steps:
701       - name: checkout the source code
702         uses: actions/checkout@v3
703         with:
704           fetch-depth: 2
705
706       - name: publish toolstate
707         run: src/ci/publish_toolstate.sh
708         shell: bash
709         env:
710           TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
711         <<: *step
712
713   # These jobs don't actually test anything, but they're used to tell bors the
714   # build completed, as there is no practical way to detect when a workflow is
715   # successful listening to webhooks only.
716   try-success:
717     needs: [try]
718     if: "success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
719     <<: *base-success-job
720   try-failure:
721     needs: [try]
722     if: "!success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
723     <<: *base-failure-job
724   auto-success:
725     needs: [auto]
726     if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
727     <<: *base-success-job
728   auto-failure:
729     needs: [auto]
730     if: "!success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
731     <<: *base-failure-job