]> git.lizzy.rs Git - rust.git/blob - src/ci/github-actions/ci.yml
Work around CI issue with windows sdk 10.0.20348.0.
[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@v2
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: select Xcode
157         run: src/ci/scripts/select-xcode.sh
158         <<: *step
159
160       - name: install clang
161         run: src/ci/scripts/install-clang.sh
162         <<: *step
163
164       - name: install WIX
165         run: src/ci/scripts/install-wix.sh
166         <<: *step
167
168       - name: ensure the build happens on a partition with enough space
169         run: src/ci/scripts/symlink-build-dir.sh
170         <<: *step
171
172       - name: disable git crlf conversion
173         run: src/ci/scripts/disable-git-crlf-conversion.sh
174         <<: *step
175
176       - name: install MSYS2
177         run: src/ci/scripts/install-msys2.sh
178         <<: *step
179
180       - name: install MinGW
181         run: src/ci/scripts/install-mingw.sh
182         <<: *step
183
184       - name: install ninja
185         run: src/ci/scripts/install-ninja.sh
186         <<: *step
187
188       - name: enable ipv6 on Docker
189         run: src/ci/scripts/enable-docker-ipv6.sh
190         <<: *step
191
192       # Disable automatic line ending conversion (again). On Windows, when we're
193       # installing dependencies, something switches the git configuration directory or
194       # re-enables autocrlf. We've not tracked down the exact cause -- and there may
195       # be multiple -- but this should ensure submodules are checked out with the
196       # appropriate line endings.
197       - name: disable git crlf conversion
198         run: src/ci/scripts/disable-git-crlf-conversion.sh
199         <<: *step
200
201       - name: checkout submodules
202         run: src/ci/scripts/checkout-submodules.sh
203         <<: *step
204
205       - name: ensure line endings are correct
206         run: src/ci/scripts/verify-line-endings.sh
207         <<: *step
208
209       - name: ensure backported commits are in upstream branches
210         run: src/ci/scripts/verify-backported-commits.sh
211         <<: *step
212
213       - name: run the build
214         run: src/ci/scripts/run-build-from-ci.sh
215         env:
216           AWS_ACCESS_KEY_ID: ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
217           AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
218           TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
219         <<: *step
220
221       - name: upload artifacts to S3
222         run: src/ci/scripts/upload-artifacts.sh
223         env:
224           AWS_ACCESS_KEY_ID: ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}
225           AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}
226         # Adding a condition on DEPLOY=1 or DEPLOY_ALT=1 is not needed as all deploy
227         # builders *should* have the AWS credentials available. Still, explicitly
228         # adding the condition is helpful as this way CI will not silently skip
229         # deploying artifacts from a dist builder if the variables are misconfigured,
230         # erroring about invalid credentials instead.
231         if: success() && !env.SKIP_JOB && (github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')
232         <<: *step
233
234   # These snippets are used by the try-success, try-failure, auto-success and auto-failure jobs.
235   # Check out their documentation for more information on why they're needed.
236
237   - &base-outcome-job
238     name: bors build finished
239     runs-on: ubuntu-latest
240
241   - &base-success-job
242     steps:
243       - name: mark the job as a success
244         run: exit 0
245         shell: bash
246     <<: *base-outcome-job
247
248   - &base-failure-job
249     steps:
250       - name: mark the job as a failure
251         run: exit 1
252         shell: bash
253     <<: *base-outcome-job
254
255 ###########################
256 #   Builders definition   #
257 ###########################
258
259 name: CI
260 on:
261   push:
262     branches:
263       - auto
264       - try
265       - try-perf
266       - master
267   pull_request:
268     branches:
269       - "**"
270
271 defaults:
272   run:
273     # On Linux, macOS, and Windows, use the system-provided bash as the default
274     # shell. (This should only make a difference on Windows, where the default
275     # shell is PowerShell.)
276     shell: bash
277
278 jobs:
279   pr:
280     <<: *base-ci-job
281     name: PR
282     env:
283       <<: [*shared-ci-variables, *public-variables]
284     if: github.event_name == 'pull_request'
285     strategy:
286       matrix:
287         include:
288           - name: mingw-check
289             <<: *job-linux-xl
290
291           - name: x86_64-gnu-llvm-10
292             <<: *job-linux-xl
293
294           - name: x86_64-gnu-tools
295             env:
296               CI_ONLY_WHEN_SUBMODULES_CHANGED: 1
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: aarch64-gnu
313             <<: *job-aarch64-linux
314
315           - name: arm-android
316             <<: *job-linux-xl
317
318           - name: armhf-gnu
319             <<: *job-linux-xl
320
321           - name: dist-aarch64-linux
322             <<: *job-linux-xl
323
324           - name: dist-android
325             <<: *job-linux-xl
326
327           - name: dist-arm-linux
328             <<: *job-linux-xl
329
330           - name: dist-armhf-linux
331             <<: *job-linux-xl
332
333           - name: dist-armv7-linux
334             <<: *job-linux-xl
335
336           - name: dist-i586-gnu-i586-i686-musl
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           - &dist-x86_64-linux
382             name: dist-x86_64-linux
383             <<: *job-linux-xl
384
385           - name: dist-x86_64-linux-alt
386             env:
387               IMAGE: dist-x86_64-linux
388             <<: *job-linux-xl
389
390           - name: dist-x86_64-musl
391             <<: *job-linux-xl
392
393           - name: dist-x86_64-netbsd
394             <<: *job-linux-xl
395
396           - name: i686-gnu
397             <<: *job-linux-xl
398
399           - name: i686-gnu-nopt
400             <<: *job-linux-xl
401
402           - name: mingw-check
403             <<: *job-linux-xl
404
405           - name: test-various
406             <<: *job-linux-xl
407
408           - name: wasm32
409             <<: *job-linux-xl
410
411           - name: x86_64-gnu
412             <<: *job-linux-xl
413
414           # This job ensures commits landing on nightly still pass the full
415           # test suite on the stable channel. There are some UI tests that
416           # depend on the channel being built (for example if they include the
417           # channel name on the output), and this builder prevents landing
418           # changes that would result in broken builds after a promotion.
419           - name: x86_64-gnu-stable
420             env:
421               IMAGE: x86_64-gnu
422               RUST_CI_OVERRIDE_RELEASE_CHANNEL: stable
423               # Only run this job on the nightly channel. Running this on beta
424               # could cause failures when `dev: 1` in `stage0.txt`, and running
425               # this on stable is useless.
426               CI_ONLY_WHEN_CHANNEL: nightly
427             <<: *job-linux-xl
428
429           - name: x86_64-gnu-aux
430             <<: *job-linux-xl
431
432           - name: x86_64-gnu-debug
433             <<: *job-linux-xl
434
435           - name: x86_64-gnu-distcheck
436             <<: *job-linux-xl
437
438           - name: x86_64-gnu-llvm-10
439             env:
440               RUST_BACKTRACE: 1
441             <<: *job-linux-xl
442
443           - name: x86_64-gnu-nopt
444             <<: *job-linux-xl
445
446           - name: x86_64-gnu-tools
447             env:
448               DEPLOY_TOOLSTATES_JSON: toolstates-linux.json
449             <<: *job-linux-xl
450
451           ####################
452           #  macOS Builders  #
453           ####################
454
455           - name: dist-x86_64-apple
456             env:
457               SCRIPT: ./x.py dist
458               RUST_CONFIGURE_ARGS: --host=x86_64-apple-darwin --target=x86_64-apple-darwin,aarch64-apple-ios,x86_64-apple-ios,aarch64-apple-ios-sim --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
459               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
460               MACOSX_DEPLOYMENT_TARGET: 10.7
461               NO_LLVM_ASSERTIONS: 1
462               NO_DEBUG_ASSERTIONS: 1
463               DIST_REQUIRE_ALL_TOOLS: 1
464             <<: *job-macos-xl
465
466           - name: dist-x86_64-apple-alt
467             env:
468               SCRIPT: ./x.py dist
469               RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --set rust.jemalloc --set llvm.ninja=false
470               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
471               MACOSX_DEPLOYMENT_TARGET: 10.7
472               NO_LLVM_ASSERTIONS: 1
473               NO_DEBUG_ASSERTIONS: 1
474             <<: *job-macos-xl
475
476           - name: x86_64-apple
477             env:
478               SCRIPT: ./x.py --stage 2 test
479               RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
480               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
481               MACOSX_DEPLOYMENT_TARGET: 10.8
482               MACOSX_STD_DEPLOYMENT_TARGET: 10.7
483               NO_LLVM_ASSERTIONS: 1
484               NO_DEBUG_ASSERTIONS: 1
485             <<: *job-macos-xl
486
487           # This target only needs to support 11.0 and up as nothing else supports the hardware
488           - name: dist-aarch64-apple
489             env:
490               SCRIPT: ./x.py dist --stage 2
491               RUST_CONFIGURE_ARGS: >-
492                 --build=x86_64-apple-darwin
493                 --host=aarch64-apple-darwin
494                 --target=aarch64-apple-darwin
495                 --enable-full-tools
496                 --enable-sanitizers
497                 --enable-profiler
498                 --set rust.jemalloc
499                 --set llvm.ninja=false
500               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
501               SELECT_XCODE: /Applications/Xcode_12.2.app
502               USE_XCODE_CLANG: 1
503               MACOSX_DEPLOYMENT_TARGET: 11.0
504               MACOSX_STD_DEPLOYMENT_TARGET: 11.0
505               NO_LLVM_ASSERTIONS: 1
506               NO_DEBUG_ASSERTIONS: 1
507               DIST_REQUIRE_ALL_TOOLS: 1
508               # Corresponds to 16K page size
509               #
510               # Shouldn't be needed if jemalloc-sys is updated to
511               # handle this platform like iOS or if we build on
512               # aarch64-apple-darwin itself.
513               #
514               # https://github.com/gnzlbg/jemallocator/blob/c27a859e98e3cb790dc269773d9da71a1e918458/jemalloc-sys/build.rs#L237
515               JEMALLOC_SYS_WITH_LG_PAGE: 14
516             <<: *job-macos-xl
517
518           ######################
519           #  Windows Builders  #
520           ######################
521
522           - name: x86_64-msvc-1
523             env:
524               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
525               SCRIPT: make ci-subset-1
526             <<: *job-windows-xl
527
528           - name: x86_64-msvc-2
529             env:
530               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
531               SCRIPT: make ci-subset-2
532             <<: *job-windows-xl
533
534           - name: i686-msvc-1
535             env:
536               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
537               SCRIPT: make ci-subset-1
538             <<: *job-windows-xl
539
540           - name: i686-msvc-2
541             env:
542               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
543               SCRIPT: make ci-subset-2
544             <<: *job-windows-xl
545
546           - name: x86_64-msvc-cargo
547             env:
548               SCRIPT: python x.py --stage 2 test src/tools/cargotest src/tools/cargo
549               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-lld
550               VCVARS_BAT: vcvars64.bat
551             <<: *job-windows-xl
552
553           - name: x86_64-msvc-tools
554             env:
555               SCRIPT: src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstate/toolstates.json windows
556               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstate/toolstates.json
557               DEPLOY_TOOLSTATES_JSON: toolstates-windows.json
558             <<: *job-windows-xl
559
560           # 32/64-bit MinGW builds.
561           #
562           # We are using MinGW with POSIX threads since LLVM requires
563           # C++'s std::thread which is disabled in libstdc++ with win32 threads.
564           # FIXME: Libc++ doesn't have this limitation so we can avoid
565           # winpthreads if we switch to it.
566           #
567           # Instead of relying on the MinGW version installed on CI we download
568           # and install one ourselves so we won't be surprised by changes to CI's
569           # build image.
570           #
571           # Finally, note that the downloads below are all in the `rust-lang-ci` S3
572           # bucket, but they clearly didn't originate there! The downloads originally
573           # came from the mingw-w64 SourceForge download site. Unfortunately
574           # SourceForge is notoriously flaky, so we mirror it on our own infrastructure.
575
576           - name: i686-mingw-1
577             env:
578               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
579               SCRIPT: make ci-mingw-subset-1
580               CUSTOM_MINGW: 1
581             <<: *job-windows-xl
582
583           - name: i686-mingw-2
584             env:
585               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
586               SCRIPT: make ci-mingw-subset-2
587               CUSTOM_MINGW: 1
588             <<: *job-windows-xl
589
590           - name: x86_64-mingw-1
591             env:
592               SCRIPT: make ci-mingw-subset-1
593               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-profiler
594               CUSTOM_MINGW: 1
595             <<: *job-windows-xl
596
597           - name: x86_64-mingw-2
598             env:
599               SCRIPT: make ci-mingw-subset-2
600               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-profiler
601               CUSTOM_MINGW: 1
602             <<: *job-windows-xl
603
604           - name: dist-x86_64-msvc
605             env:
606               RUST_CONFIGURE_ARGS: >-
607                 --build=x86_64-pc-windows-msvc
608                 --host=x86_64-pc-windows-msvc
609                 --target=x86_64-pc-windows-msvc
610                 --enable-full-tools
611                 --enable-profiler
612               SCRIPT: python x.py dist
613               DIST_REQUIRE_ALL_TOOLS: 1
614             <<: *job-windows-xl
615
616           - name: dist-i686-msvc
617             env:
618               RUST_CONFIGURE_ARGS: >-
619                 --build=i686-pc-windows-msvc
620                 --host=i686-pc-windows-msvc
621                 --target=i686-pc-windows-msvc,i586-pc-windows-msvc
622                 --enable-full-tools
623                 --enable-profiler
624               SCRIPT: python x.py dist
625               DIST_REQUIRE_ALL_TOOLS: 1
626             <<: *job-windows-xl
627
628           - name: dist-aarch64-msvc
629             env:
630               RUST_CONFIGURE_ARGS: >-
631                 --build=x86_64-pc-windows-msvc
632                 --host=aarch64-pc-windows-msvc
633                 --enable-full-tools
634                 --enable-profiler
635               SCRIPT: python x.py dist
636               # RLS does not build for aarch64-pc-windows-msvc. See rust-lang/rls#1693
637               DIST_REQUIRE_ALL_TOOLS: 0
638               # Hack around this SDK version, because it doesn't work with clang.
639               # See https://github.com/rust-lang/rust/issues/88796
640               WINDOWS_SDK_20348_HACK: 1
641             <<: *job-windows-xl
642
643           - name: dist-i686-mingw
644             env:
645               RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-full-tools --enable-profiler
646               SCRIPT: python x.py dist
647               CUSTOM_MINGW: 1
648               DIST_REQUIRE_ALL_TOOLS: 1
649             <<: *job-windows-xl
650
651           - name: dist-x86_64-mingw
652             env:
653               SCRIPT: python x.py dist
654               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-full-tools --enable-profiler
655               CUSTOM_MINGW: 1
656               DIST_REQUIRE_ALL_TOOLS: 1
657             <<: *job-windows-xl
658
659           - name: dist-x86_64-msvc-alt
660             env:
661               RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler
662               SCRIPT: python x.py dist
663             <<: *job-windows-xl
664
665   try:
666     <<: *base-ci-job
667     name: try
668     env:
669       <<: [*shared-ci-variables, *prod-variables]
670     if: github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'
671     strategy:
672       matrix:
673         include:
674           - *dist-x86_64-linux
675
676   master:
677     name: master
678     runs-on: ubuntu-latest
679     env:
680       <<: [*prod-variables]
681     if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'rust-lang-ci/rust'
682     steps:
683       - name: checkout the source code
684         uses: actions/checkout@v2
685         with:
686           fetch-depth: 2
687
688       - name: publish toolstate
689         run: src/ci/publish_toolstate.sh
690         shell: bash
691         env:
692           TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
693         <<: *step
694
695   # These jobs don't actually test anything, but they're used to tell bors the
696   # build completed, as there is no practical way to detect when a workflow is
697   # successful listening to webhooks only.
698   try-success:
699     needs: [try]
700     if: "success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
701     <<: *base-success-job
702   try-failure:
703     needs: [try]
704     if: "!success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
705     <<: *base-failure-job
706   auto-success:
707     needs: [auto]
708     if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
709     <<: *base-success-job
710   auto-failure:
711     needs: [auto]
712     if: "!success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
713     <<: *base-failure-job