]> git.lizzy.rs Git - rust.git/blob - .github/workflows/ci.yml
Rollup merge of #90202 - matthewjasper:xcrate-hygiene, r=petrochenkov
[rust.git] / .github / workflows / ci.yml
1 #############################################################
2 #   WARNING: automatically generated file, DO NOT CHANGE!   #
3 #############################################################
4
5 # This file was automatically generated by the expand-yaml-anchors tool. The
6 # source file that generated this one is:
7 #
8 #   src/ci/github-actions/ci.yml
9 #
10 # Once you make changes to that file you need to run:
11 #
12 #   ./x.py run src/tools/expand-yaml-anchors/
13 #
14 # The CI build will fail if the tool is not run after changes to this file.
15
16 ---
17 name: CI
18 "on":
19   push:
20     branches:
21       - auto
22       - try
23       - try-perf
24       - master
25   pull_request:
26     branches:
27       - "**"
28 defaults:
29   run:
30     shell: bash
31 jobs:
32   pr:
33     name: PR
34     env:
35       CI_JOB_NAME: "${{ matrix.name }}"
36       SCCACHE_BUCKET: rust-lang-ci-sccache2
37       TOOLSTATE_REPO: "https://github.com/rust-lang-nursery/rust-toolstate"
38       CACHE_DOMAIN: ci-caches.rust-lang.org
39     if: "github.event_name == 'pull_request'"
40     strategy:
41       matrix:
42         include:
43           - name: mingw-check
44             os: ubuntu-latest-xl
45             env: {}
46           - name: x86_64-gnu-llvm-12
47             os: ubuntu-latest-xl
48             env: {}
49           - name: x86_64-gnu-tools
50             env:
51               CI_ONLY_WHEN_SUBMODULES_CHANGED: 1
52             os: ubuntu-latest-xl
53     timeout-minutes: 600
54     runs-on: "${{ matrix.os }}"
55     steps:
56       - name: disable git crlf conversion
57         run: git config --global core.autocrlf false
58       - name: checkout the source code
59         uses: actions/checkout@v2
60         with:
61           fetch-depth: 2
62       - name: configure the PR in which the error message will be posted
63         run: "echo \"[CI_PR_NUMBER=$num]\""
64         env:
65           num: "${{ github.event.number }}"
66         if: "success() && !env.SKIP_JOB && github.event_name == 'pull_request'"
67       - name: add extra environment variables
68         run: src/ci/scripts/setup-environment.sh
69         env:
70           EXTRA_VARIABLES: "${{ toJson(matrix.env) }}"
71         if: success() && !env.SKIP_JOB
72       - name: decide whether to skip this job
73         run: src/ci/scripts/should-skip-this.sh
74         if: success() && !env.SKIP_JOB
75       - name: ensure the channel matches the target branch
76         run: src/ci/scripts/verify-channel.sh
77         if: success() && !env.SKIP_JOB
78       - name: configure GitHub Actions to kill the build when outdated
79         uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
80         with:
81           github_token: "${{ secrets.github_token }}"
82         if: "success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
83       - name: collect CPU statistics
84         run: src/ci/scripts/collect-cpu-stats.sh
85         if: success() && !env.SKIP_JOB
86       - name: show the current environment
87         run: src/ci/scripts/dump-environment.sh
88         if: success() && !env.SKIP_JOB
89       - name: install awscli
90         run: src/ci/scripts/install-awscli.sh
91         if: success() && !env.SKIP_JOB
92       - name: install sccache
93         run: src/ci/scripts/install-sccache.sh
94         if: success() && !env.SKIP_JOB
95       - name: install clang
96         run: src/ci/scripts/install-clang.sh
97         if: success() && !env.SKIP_JOB
98       - name: install WIX
99         run: src/ci/scripts/install-wix.sh
100         if: success() && !env.SKIP_JOB
101       - name: ensure the build happens on a partition with enough space
102         run: src/ci/scripts/symlink-build-dir.sh
103         if: success() && !env.SKIP_JOB
104       - name: disable git crlf conversion
105         run: src/ci/scripts/disable-git-crlf-conversion.sh
106         if: success() && !env.SKIP_JOB
107       - name: install MSYS2
108         run: src/ci/scripts/install-msys2.sh
109         if: success() && !env.SKIP_JOB
110       - name: install MinGW
111         run: src/ci/scripts/install-mingw.sh
112         if: success() && !env.SKIP_JOB
113       - name: install ninja
114         run: src/ci/scripts/install-ninja.sh
115         if: success() && !env.SKIP_JOB
116       - name: enable ipv6 on Docker
117         run: src/ci/scripts/enable-docker-ipv6.sh
118         if: success() && !env.SKIP_JOB
119       - name: disable git crlf conversion
120         run: src/ci/scripts/disable-git-crlf-conversion.sh
121         if: success() && !env.SKIP_JOB
122       - name: checkout submodules
123         run: src/ci/scripts/checkout-submodules.sh
124         if: success() && !env.SKIP_JOB
125       - name: ensure line endings are correct
126         run: src/ci/scripts/verify-line-endings.sh
127         if: success() && !env.SKIP_JOB
128       - name: ensure backported commits are in upstream branches
129         run: src/ci/scripts/verify-backported-commits.sh
130         if: success() && !env.SKIP_JOB
131       - name: run the build
132         run: src/ci/scripts/run-build-from-ci.sh
133         env:
134           AWS_ACCESS_KEY_ID: "${{ env.CACHES_AWS_ACCESS_KEY_ID }}"
135           AWS_SECRET_ACCESS_KEY: "${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}"
136           TOOLSTATE_REPO_ACCESS_TOKEN: "${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}"
137         if: success() && !env.SKIP_JOB
138       - name: upload artifacts to S3
139         run: src/ci/scripts/upload-artifacts.sh
140         env:
141           AWS_ACCESS_KEY_ID: "${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}"
142           AWS_SECRET_ACCESS_KEY: "${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}"
143         if: "success() && !env.SKIP_JOB && (github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')"
144   auto:
145     name: auto
146     env:
147       CI_JOB_NAME: "${{ matrix.name }}"
148       SCCACHE_BUCKET: rust-lang-ci-sccache2
149       DEPLOY_BUCKET: rust-lang-ci2
150       TOOLSTATE_REPO: "https://github.com/rust-lang-nursery/rust-toolstate"
151       TOOLSTATE_ISSUES_API_URL: "https://api.github.com/repos/rust-lang/rust/issues"
152       TOOLSTATE_PUBLISH: 1
153       CACHES_AWS_ACCESS_KEY_ID: AKIA46X5W6CZI5DHEBFL
154       ARTIFACTS_AWS_ACCESS_KEY_ID: AKIA46X5W6CZN24CBO55
155       CACHE_DOMAIN: ci-caches.rust-lang.org
156     if: "github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
157     strategy:
158       matrix:
159         include:
160           - name: aarch64-gnu
161             os:
162               - self-hosted
163               - ARM64
164               - linux
165           - name: arm-android
166             os: ubuntu-latest-xl
167             env: {}
168           - name: armhf-gnu
169             os: ubuntu-latest-xl
170             env: {}
171           - name: dist-aarch64-linux
172             os: ubuntu-latest-xl
173             env: {}
174           - name: dist-android
175             os: ubuntu-latest-xl
176             env: {}
177           - name: dist-arm-linux
178             os: ubuntu-latest-xl
179             env: {}
180           - name: dist-armhf-linux
181             os: ubuntu-latest-xl
182             env: {}
183           - name: dist-armv7-linux
184             os: ubuntu-latest-xl
185             env: {}
186           - name: dist-i586-gnu-i586-i686-musl
187             os: ubuntu-latest-xl
188             env: {}
189           - name: dist-i686-linux
190             os: ubuntu-latest-xl
191             env: {}
192           - name: dist-mips-linux
193             os: ubuntu-latest-xl
194             env: {}
195           - name: dist-mips64-linux
196             os: ubuntu-latest-xl
197             env: {}
198           - name: dist-mips64el-linux
199             os: ubuntu-latest-xl
200             env: {}
201           - name: dist-mipsel-linux
202             os: ubuntu-latest-xl
203             env: {}
204           - name: dist-powerpc-linux
205             os: ubuntu-latest-xl
206             env: {}
207           - name: dist-powerpc64-linux
208             os: ubuntu-latest-xl
209             env: {}
210           - name: dist-powerpc64le-linux
211             os: ubuntu-latest-xl
212             env: {}
213           - name: dist-riscv64-linux
214             os: ubuntu-latest-xl
215             env: {}
216           - name: dist-s390x-linux
217             os: ubuntu-latest-xl
218             env: {}
219           - name: dist-various-1
220             os: ubuntu-latest-xl
221             env: {}
222           - name: dist-various-2
223             os: ubuntu-latest-xl
224             env: {}
225           - name: dist-x86_64-freebsd
226             os: ubuntu-latest-xl
227             env: {}
228           - name: dist-x86_64-illumos
229             os: ubuntu-latest-xl
230             env: {}
231           - name: dist-x86_64-linux
232             os: ubuntu-latest-xl
233             env: {}
234           - name: dist-x86_64-linux-alt
235             env:
236               IMAGE: dist-x86_64-linux
237             os: ubuntu-latest-xl
238           - name: dist-x86_64-musl
239             os: ubuntu-latest-xl
240             env: {}
241           - name: dist-x86_64-netbsd
242             os: ubuntu-latest-xl
243             env: {}
244           - name: i686-gnu
245             os: ubuntu-latest-xl
246             env: {}
247           - name: i686-gnu-nopt
248             os: ubuntu-latest-xl
249             env: {}
250           - name: mingw-check
251             os: ubuntu-latest-xl
252             env: {}
253           - name: test-various
254             os: ubuntu-latest-xl
255             env: {}
256           - name: wasm32
257             os: ubuntu-latest-xl
258             env: {}
259           - name: x86_64-gnu
260             os: ubuntu-latest-xl
261             env: {}
262           - name: x86_64-gnu-stable
263             env:
264               IMAGE: x86_64-gnu
265               RUST_CI_OVERRIDE_RELEASE_CHANNEL: stable
266               CI_ONLY_WHEN_CHANNEL: nightly
267             os: ubuntu-latest-xl
268           - name: x86_64-gnu-aux
269             os: ubuntu-latest-xl
270             env: {}
271           - name: x86_64-gnu-debug
272             os: ubuntu-latest-xl
273             env: {}
274           - name: x86_64-gnu-distcheck
275             os: ubuntu-latest-xl
276             env: {}
277           - name: x86_64-gnu-llvm-12
278             env:
279               RUST_BACKTRACE: 1
280             os: ubuntu-latest-xl
281           - name: x86_64-gnu-nopt
282             os: ubuntu-latest-xl
283             env: {}
284           - name: x86_64-gnu-tools
285             env:
286               DEPLOY_TOOLSTATES_JSON: toolstates-linux.json
287             os: ubuntu-latest-xl
288           - name: dist-x86_64-apple
289             env:
290               SCRIPT: "./x.py dist --exclude src/doc --exclude extended && ./x.py dist --target=x86_64-apple-darwin src/doc && ./x.py dist extended"
291               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"
292               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
293               MACOSX_DEPLOYMENT_TARGET: 10.7
294               NO_LLVM_ASSERTIONS: 1
295               NO_DEBUG_ASSERTIONS: 1
296               NO_OVERFLOW_CHECKS: 1
297               DIST_REQUIRE_ALL_TOOLS: 1
298             os: macos-latest
299           - name: dist-x86_64-apple-alt
300             env:
301               SCRIPT: "./x.py dist"
302               RUST_CONFIGURE_ARGS: "--enable-extended --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
303               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
304               MACOSX_DEPLOYMENT_TARGET: 10.7
305               NO_LLVM_ASSERTIONS: 1
306               NO_DEBUG_ASSERTIONS: 1
307               NO_OVERFLOW_CHECKS: 1
308             os: macos-latest
309           - name: x86_64-apple
310             env:
311               SCRIPT: "./x.py --stage 2 test"
312               RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
313               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
314               MACOSX_DEPLOYMENT_TARGET: 10.8
315               MACOSX_STD_DEPLOYMENT_TARGET: 10.7
316               NO_LLVM_ASSERTIONS: 1
317               NO_DEBUG_ASSERTIONS: 1
318               NO_OVERFLOW_CHECKS: 1
319             os: macos-latest
320           - name: dist-aarch64-apple
321             env:
322               SCRIPT: "./x.py dist --stage 2"
323               RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --host=aarch64-apple-darwin --target=aarch64-apple-darwin --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
324               RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
325               USE_XCODE_CLANG: 1
326               MACOSX_DEPLOYMENT_TARGET: 11.0
327               MACOSX_STD_DEPLOYMENT_TARGET: 11.0
328               NO_LLVM_ASSERTIONS: 1
329               NO_DEBUG_ASSERTIONS: 1
330               NO_OVERFLOW_CHECKS: 1
331               DIST_REQUIRE_ALL_TOOLS: 1
332               JEMALLOC_SYS_WITH_LG_PAGE: 14
333             os: macos-latest
334           - name: x86_64-msvc-1
335             env:
336               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --enable-profiler"
337               SCRIPT: make ci-subset-1
338             os: windows-latest-xl
339           - name: x86_64-msvc-2
340             env:
341               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --enable-profiler"
342               SCRIPT: make ci-subset-2
343             os: windows-latest-xl
344           - name: i686-msvc-1
345             env:
346               RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-msvc"
347               SCRIPT: make ci-subset-1
348             os: windows-latest-xl
349           - name: i686-msvc-2
350             env:
351               RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-msvc"
352               SCRIPT: make ci-subset-2
353             os: windows-latest-xl
354           - name: x86_64-msvc-cargo
355             env:
356               SCRIPT: python x.py --stage 2 test src/tools/cargotest src/tools/cargo
357               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --enable-lld"
358               VCVARS_BAT: vcvars64.bat
359             os: windows-latest-xl
360           - name: x86_64-msvc-tools
361             env:
362               SCRIPT: src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstate/toolstates.json windows
363               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstate/toolstates.json"
364               DEPLOY_TOOLSTATES_JSON: toolstates-windows.json
365             os: windows-latest-xl
366           - name: i686-mingw-1
367             env:
368               RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-gnu"
369               SCRIPT: make ci-mingw-subset-1
370               CUSTOM_MINGW: 1
371             os: windows-latest-xl
372           - name: i686-mingw-2
373             env:
374               RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-gnu"
375               SCRIPT: make ci-mingw-subset-2
376               CUSTOM_MINGW: 1
377             os: windows-latest-xl
378           - name: x86_64-mingw-1
379             env:
380               SCRIPT: make ci-mingw-subset-1
381               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-gnu --enable-profiler"
382               CUSTOM_MINGW: 1
383             os: windows-latest-xl
384           - name: x86_64-mingw-2
385             env:
386               SCRIPT: make ci-mingw-subset-2
387               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-gnu --enable-profiler"
388               CUSTOM_MINGW: 1
389             os: windows-latest-xl
390           - name: dist-x86_64-msvc
391             env:
392               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --host=x86_64-pc-windows-msvc --target=x86_64-pc-windows-msvc --enable-full-tools --enable-profiler"
393               SCRIPT: python x.py dist
394               DIST_REQUIRE_ALL_TOOLS: 1
395             os: windows-latest-xl
396           - name: dist-i686-msvc
397             env:
398               RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-msvc --host=i686-pc-windows-msvc --target=i686-pc-windows-msvc,i586-pc-windows-msvc --enable-full-tools --enable-profiler"
399               SCRIPT: python x.py dist
400               DIST_REQUIRE_ALL_TOOLS: 1
401             os: windows-latest-xl
402           - name: dist-aarch64-msvc
403             env:
404               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --host=aarch64-pc-windows-msvc --enable-full-tools --enable-profiler"
405               SCRIPT: python x.py dist
406               DIST_REQUIRE_ALL_TOOLS: 0
407               WINDOWS_SDK_20348_HACK: 1
408             os: windows-latest-xl
409           - name: dist-i686-mingw
410             env:
411               RUST_CONFIGURE_ARGS: "--build=i686-pc-windows-gnu --enable-full-tools --enable-profiler"
412               SCRIPT: python x.py dist
413               CUSTOM_MINGW: 1
414               DIST_REQUIRE_ALL_TOOLS: 1
415             os: windows-latest-xl
416           - name: dist-x86_64-mingw
417             env:
418               SCRIPT: python x.py dist
419               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-gnu --enable-full-tools --enable-profiler"
420               CUSTOM_MINGW: 1
421               DIST_REQUIRE_ALL_TOOLS: 1
422             os: windows-latest-xl
423           - name: dist-x86_64-msvc-alt
424             env:
425               RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --enable-extended --enable-profiler"
426               SCRIPT: python x.py dist
427             os: windows-latest-xl
428     timeout-minutes: 600
429     runs-on: "${{ matrix.os }}"
430     steps:
431       - name: disable git crlf conversion
432         run: git config --global core.autocrlf false
433       - name: checkout the source code
434         uses: actions/checkout@v2
435         with:
436           fetch-depth: 2
437       - name: configure the PR in which the error message will be posted
438         run: "echo \"[CI_PR_NUMBER=$num]\""
439         env:
440           num: "${{ github.event.number }}"
441         if: "success() && !env.SKIP_JOB && github.event_name == 'pull_request'"
442       - name: add extra environment variables
443         run: src/ci/scripts/setup-environment.sh
444         env:
445           EXTRA_VARIABLES: "${{ toJson(matrix.env) }}"
446         if: success() && !env.SKIP_JOB
447       - name: decide whether to skip this job
448         run: src/ci/scripts/should-skip-this.sh
449         if: success() && !env.SKIP_JOB
450       - name: ensure the channel matches the target branch
451         run: src/ci/scripts/verify-channel.sh
452         if: success() && !env.SKIP_JOB
453       - name: configure GitHub Actions to kill the build when outdated
454         uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
455         with:
456           github_token: "${{ secrets.github_token }}"
457         if: "success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
458       - name: collect CPU statistics
459         run: src/ci/scripts/collect-cpu-stats.sh
460         if: success() && !env.SKIP_JOB
461       - name: show the current environment
462         run: src/ci/scripts/dump-environment.sh
463         if: success() && !env.SKIP_JOB
464       - name: install awscli
465         run: src/ci/scripts/install-awscli.sh
466         if: success() && !env.SKIP_JOB
467       - name: install sccache
468         run: src/ci/scripts/install-sccache.sh
469         if: success() && !env.SKIP_JOB
470       - name: install clang
471         run: src/ci/scripts/install-clang.sh
472         if: success() && !env.SKIP_JOB
473       - name: install WIX
474         run: src/ci/scripts/install-wix.sh
475         if: success() && !env.SKIP_JOB
476       - name: ensure the build happens on a partition with enough space
477         run: src/ci/scripts/symlink-build-dir.sh
478         if: success() && !env.SKIP_JOB
479       - name: disable git crlf conversion
480         run: src/ci/scripts/disable-git-crlf-conversion.sh
481         if: success() && !env.SKIP_JOB
482       - name: install MSYS2
483         run: src/ci/scripts/install-msys2.sh
484         if: success() && !env.SKIP_JOB
485       - name: install MinGW
486         run: src/ci/scripts/install-mingw.sh
487         if: success() && !env.SKIP_JOB
488       - name: install ninja
489         run: src/ci/scripts/install-ninja.sh
490         if: success() && !env.SKIP_JOB
491       - name: enable ipv6 on Docker
492         run: src/ci/scripts/enable-docker-ipv6.sh
493         if: success() && !env.SKIP_JOB
494       - name: disable git crlf conversion
495         run: src/ci/scripts/disable-git-crlf-conversion.sh
496         if: success() && !env.SKIP_JOB
497       - name: checkout submodules
498         run: src/ci/scripts/checkout-submodules.sh
499         if: success() && !env.SKIP_JOB
500       - name: ensure line endings are correct
501         run: src/ci/scripts/verify-line-endings.sh
502         if: success() && !env.SKIP_JOB
503       - name: ensure backported commits are in upstream branches
504         run: src/ci/scripts/verify-backported-commits.sh
505         if: success() && !env.SKIP_JOB
506       - name: run the build
507         run: src/ci/scripts/run-build-from-ci.sh
508         env:
509           AWS_ACCESS_KEY_ID: "${{ env.CACHES_AWS_ACCESS_KEY_ID }}"
510           AWS_SECRET_ACCESS_KEY: "${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}"
511           TOOLSTATE_REPO_ACCESS_TOKEN: "${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}"
512         if: success() && !env.SKIP_JOB
513       - name: upload artifacts to S3
514         run: src/ci/scripts/upload-artifacts.sh
515         env:
516           AWS_ACCESS_KEY_ID: "${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}"
517           AWS_SECRET_ACCESS_KEY: "${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}"
518         if: "success() && !env.SKIP_JOB && (github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')"
519   try:
520     name: try
521     env:
522       CI_JOB_NAME: "${{ matrix.name }}"
523       SCCACHE_BUCKET: rust-lang-ci-sccache2
524       DEPLOY_BUCKET: rust-lang-ci2
525       TOOLSTATE_REPO: "https://github.com/rust-lang-nursery/rust-toolstate"
526       TOOLSTATE_ISSUES_API_URL: "https://api.github.com/repos/rust-lang/rust/issues"
527       TOOLSTATE_PUBLISH: 1
528       CACHES_AWS_ACCESS_KEY_ID: AKIA46X5W6CZI5DHEBFL
529       ARTIFACTS_AWS_ACCESS_KEY_ID: AKIA46X5W6CZN24CBO55
530       CACHE_DOMAIN: ci-caches.rust-lang.org
531     if: "github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
532     strategy:
533       matrix:
534         include:
535           - name: dist-x86_64-linux
536             os: ubuntu-latest-xl
537             env: {}
538     timeout-minutes: 600
539     runs-on: "${{ matrix.os }}"
540     steps:
541       - name: disable git crlf conversion
542         run: git config --global core.autocrlf false
543       - name: checkout the source code
544         uses: actions/checkout@v2
545         with:
546           fetch-depth: 2
547       - name: configure the PR in which the error message will be posted
548         run: "echo \"[CI_PR_NUMBER=$num]\""
549         env:
550           num: "${{ github.event.number }}"
551         if: "success() && !env.SKIP_JOB && github.event_name == 'pull_request'"
552       - name: add extra environment variables
553         run: src/ci/scripts/setup-environment.sh
554         env:
555           EXTRA_VARIABLES: "${{ toJson(matrix.env) }}"
556         if: success() && !env.SKIP_JOB
557       - name: decide whether to skip this job
558         run: src/ci/scripts/should-skip-this.sh
559         if: success() && !env.SKIP_JOB
560       - name: ensure the channel matches the target branch
561         run: src/ci/scripts/verify-channel.sh
562         if: success() && !env.SKIP_JOB
563       - name: configure GitHub Actions to kill the build when outdated
564         uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
565         with:
566           github_token: "${{ secrets.github_token }}"
567         if: "success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
568       - name: collect CPU statistics
569         run: src/ci/scripts/collect-cpu-stats.sh
570         if: success() && !env.SKIP_JOB
571       - name: show the current environment
572         run: src/ci/scripts/dump-environment.sh
573         if: success() && !env.SKIP_JOB
574       - name: install awscli
575         run: src/ci/scripts/install-awscli.sh
576         if: success() && !env.SKIP_JOB
577       - name: install sccache
578         run: src/ci/scripts/install-sccache.sh
579         if: success() && !env.SKIP_JOB
580       - name: install clang
581         run: src/ci/scripts/install-clang.sh
582         if: success() && !env.SKIP_JOB
583       - name: install WIX
584         run: src/ci/scripts/install-wix.sh
585         if: success() && !env.SKIP_JOB
586       - name: ensure the build happens on a partition with enough space
587         run: src/ci/scripts/symlink-build-dir.sh
588         if: success() && !env.SKIP_JOB
589       - name: disable git crlf conversion
590         run: src/ci/scripts/disable-git-crlf-conversion.sh
591         if: success() && !env.SKIP_JOB
592       - name: install MSYS2
593         run: src/ci/scripts/install-msys2.sh
594         if: success() && !env.SKIP_JOB
595       - name: install MinGW
596         run: src/ci/scripts/install-mingw.sh
597         if: success() && !env.SKIP_JOB
598       - name: install ninja
599         run: src/ci/scripts/install-ninja.sh
600         if: success() && !env.SKIP_JOB
601       - name: enable ipv6 on Docker
602         run: src/ci/scripts/enable-docker-ipv6.sh
603         if: success() && !env.SKIP_JOB
604       - name: disable git crlf conversion
605         run: src/ci/scripts/disable-git-crlf-conversion.sh
606         if: success() && !env.SKIP_JOB
607       - name: checkout submodules
608         run: src/ci/scripts/checkout-submodules.sh
609         if: success() && !env.SKIP_JOB
610       - name: ensure line endings are correct
611         run: src/ci/scripts/verify-line-endings.sh
612         if: success() && !env.SKIP_JOB
613       - name: ensure backported commits are in upstream branches
614         run: src/ci/scripts/verify-backported-commits.sh
615         if: success() && !env.SKIP_JOB
616       - name: run the build
617         run: src/ci/scripts/run-build-from-ci.sh
618         env:
619           AWS_ACCESS_KEY_ID: "${{ env.CACHES_AWS_ACCESS_KEY_ID }}"
620           AWS_SECRET_ACCESS_KEY: "${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}"
621           TOOLSTATE_REPO_ACCESS_TOKEN: "${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}"
622         if: success() && !env.SKIP_JOB
623       - name: upload artifacts to S3
624         run: src/ci/scripts/upload-artifacts.sh
625         env:
626           AWS_ACCESS_KEY_ID: "${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}"
627           AWS_SECRET_ACCESS_KEY: "${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}"
628         if: "success() && !env.SKIP_JOB && (github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')"
629   master:
630     name: master
631     runs-on: ubuntu-latest
632     env:
633       SCCACHE_BUCKET: rust-lang-ci-sccache2
634       DEPLOY_BUCKET: rust-lang-ci2
635       TOOLSTATE_REPO: "https://github.com/rust-lang-nursery/rust-toolstate"
636       TOOLSTATE_ISSUES_API_URL: "https://api.github.com/repos/rust-lang/rust/issues"
637       TOOLSTATE_PUBLISH: 1
638       CACHES_AWS_ACCESS_KEY_ID: AKIA46X5W6CZI5DHEBFL
639       ARTIFACTS_AWS_ACCESS_KEY_ID: AKIA46X5W6CZN24CBO55
640       CACHE_DOMAIN: ci-caches.rust-lang.org
641     if: "github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'rust-lang-ci/rust'"
642     steps:
643       - name: checkout the source code
644         uses: actions/checkout@v2
645         with:
646           fetch-depth: 2
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         if: success() && !env.SKIP_JOB
653   try-success:
654     needs:
655       - try
656     if: "success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
657     steps:
658       - name: mark the job as a success
659         run: exit 0
660         shell: bash
661     name: bors build finished
662     runs-on: ubuntu-latest
663   try-failure:
664     needs:
665       - try
666     if: "!success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
667     steps:
668       - name: mark the job as a failure
669         run: exit 1
670         shell: bash
671     name: bors build finished
672     runs-on: ubuntu-latest
673   auto-success:
674     needs:
675       - auto
676     if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
677     steps:
678       - name: mark the job as a success
679         run: exit 0
680         shell: bash
681     name: bors build finished
682     runs-on: ubuntu-latest
683   auto-failure:
684     needs:
685       - auto
686     if: "!success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
687     steps:
688       - name: mark the job as a failure
689         run: exit 1
690         shell: bash
691     name: bors build finished
692     runs-on: ubuntu-latest