]> git.proxmox.com Git - rustc.git/blob - src/ci/github-actions/ci.yml
New upstream version 1.49.0~beta.4+dfsg1
[rustc.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_JOBS && 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: configure GitHub Actions to kill the build when outdated
130 uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
131 with:
132 github_token: "${{ secrets.github_token }}"
133 if: success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'
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: select Xcode
153 run: src/ci/scripts/select-xcode.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: ensure the build happens on a partition with enough space
165 run: src/ci/scripts/symlink-build-dir.sh
166 <<: *step
167
168 - name: disable git crlf conversion
169 run: src/ci/scripts/disable-git-crlf-conversion.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: checkout submodules
198 run: src/ci/scripts/checkout-submodules.sh
199 <<: *step
200
201 - name: ensure line endings are correct
202 run: src/ci/scripts/verify-line-endings.sh
203 <<: *step
204
205 - name: run the build
206 run: src/ci/scripts/run-build-from-ci.sh
207 env:
208 AWS_ACCESS_KEY_ID: ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
209 AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
210 TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
211 <<: *step
212
213 - name: upload artifacts to S3
214 run: src/ci/scripts/upload-artifacts.sh
215 env:
216 AWS_ACCESS_KEY_ID: ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}
217 AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}
218 # Adding a condition on DEPLOY=1 or DEPLOY_ALT=1 is not needed as all deploy
219 # builders *should* have the AWS credentials available. Still, explicitly
220 # adding the condition is helpful as this way CI will not silently skip
221 # deploying artifacts from a dist builder if the variables are misconfigured,
222 # erroring about invalid credentials instead.
223 if: success() && !env.SKIP_JOB && (github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')
224 <<: *step
225
226 # These snippets are used by the try-success, try-failure, auto-success and auto-failure jobs.
227 # Check out their documentation for more information on why they're needed.
228
229 - &base-outcome-job
230 name: bors build finished
231 runs-on: ubuntu-latest
232
233 - &base-success-job
234 steps:
235 - name: mark the job as a success
236 run: exit 0
237 shell: bash
238 <<: *base-outcome-job
239
240 - &base-failure-job
241 steps:
242 - name: mark the job as a failure
243 run: exit 1
244 shell: bash
245 <<: *base-outcome-job
246
247 ###########################
248 # Builders definition #
249 ###########################
250
251 name: CI
252 on:
253 push:
254 branches:
255 - auto
256 - try
257 - try-perf
258 - master
259 pull_request:
260 branches:
261 - "**"
262
263 defaults:
264 run:
265 # On Linux, macOS, and Windows, use the system-provided bash as the default
266 # shell. (This should only make a difference on Windows, where the default
267 # shell is PowerShell.)
268 shell: bash
269
270 jobs:
271 pr:
272 <<: *base-ci-job
273 name: PR
274 env:
275 <<: [*shared-ci-variables, *public-variables]
276 if: github.event_name == 'pull_request'
277 strategy:
278 matrix:
279 include:
280 - name: mingw-check
281 <<: *job-linux-xl
282
283 - name: x86_64-gnu-llvm-8
284 <<: *job-linux-xl
285
286 - name: x86_64-gnu-tools
287 env:
288 CI_ONLY_WHEN_SUBMODULES_CHANGED: 1
289 <<: *job-linux-xl
290
291 auto:
292 <<: *base-ci-job
293 name: auto
294 env:
295 <<: [*shared-ci-variables, *prod-variables]
296 if: github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'
297 strategy:
298 matrix:
299 include:
300 #############################
301 # Linux/Docker builders #
302 #############################
303
304 - name: aarch64-gnu
305 <<: *job-aarch64-linux
306
307 - name: arm-android
308 <<: *job-linux-xl
309
310 - name: armhf-gnu
311 <<: *job-linux-xl
312
313 - name: dist-aarch64-linux
314 <<: *job-linux-xl
315
316 - name: dist-android
317 <<: *job-linux-xl
318
319 - name: dist-arm-linux
320 <<: *job-linux-xl
321
322 - name: dist-armhf-linux
323 <<: *job-linux-xl
324
325 - name: dist-armv7-linux
326 <<: *job-linux-xl
327
328 - name: dist-i586-gnu-i586-i686-musl
329 <<: *job-linux-xl
330
331 - name: dist-i686-linux
332 <<: *job-linux-xl
333
334 - name: dist-mips-linux
335 <<: *job-linux-xl
336
337 - name: dist-mips64-linux
338 <<: *job-linux-xl
339
340 - name: dist-mips64el-linux
341 <<: *job-linux-xl
342
343 - name: dist-mipsel-linux
344 <<: *job-linux-xl
345
346 - name: dist-powerpc-linux
347 <<: *job-linux-xl
348
349 - name: dist-powerpc64-linux
350 <<: *job-linux-xl
351
352 - name: dist-powerpc64le-linux
353 <<: *job-linux-xl
354
355 - name: dist-riscv64-linux
356 <<: *job-linux-xl
357
358 - name: dist-s390x-linux
359 <<: *job-linux-xl
360
361 - name: dist-various-1
362 <<: *job-linux-xl
363
364 - name: dist-various-2
365 <<: *job-linux-xl
366
367 - name: dist-x86_64-freebsd
368 <<: *job-linux-xl
369
370 - name: dist-x86_64-illumos
371 <<: *job-linux-xl
372
373 - &dist-x86_64-linux
374 name: dist-x86_64-linux
375 <<: *job-linux-xl
376
377 - name: dist-x86_64-linux-alt
378 env:
379 IMAGE: dist-x86_64-linux
380 <<: *job-linux-xl
381
382 - name: dist-x86_64-musl
383 <<: *job-linux-xl
384
385 - name: dist-x86_64-netbsd
386 <<: *job-linux-xl
387
388 - name: i686-gnu
389 <<: *job-linux-xl
390
391 - name: i686-gnu-nopt
392 <<: *job-linux-xl
393
394 - name: mingw-check
395 <<: *job-linux-xl
396
397 - name: test-various
398 <<: *job-linux-xl
399
400 - name: wasm32
401 <<: *job-linux-xl
402
403 - name: x86_64-gnu
404 <<: *job-linux-xl
405
406 - name: x86_64-gnu-aux
407 <<: *job-linux-xl
408
409 - name: x86_64-gnu-debug
410 <<: *job-linux-xl
411
412 - name: x86_64-gnu-distcheck
413 <<: *job-linux-xl
414
415 - name: x86_64-gnu-llvm-8
416 env:
417 RUST_BACKTRACE: 1
418 <<: *job-linux-xl
419
420 - name: x86_64-gnu-nopt
421 <<: *job-linux-xl
422
423 - name: x86_64-gnu-tools
424 env:
425 DEPLOY_TOOLSTATES_JSON: toolstates-linux.json
426 <<: *job-linux-xl
427
428 ####################
429 # macOS Builders #
430 ####################
431
432 - name: dist-x86_64-apple
433 env:
434 SCRIPT: ./x.py dist
435 RUST_CONFIGURE_ARGS: --host=x86_64-apple-darwin --target=x86_64-apple-darwin,aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
436 RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
437 MACOSX_DEPLOYMENT_TARGET: 10.7
438 NO_LLVM_ASSERTIONS: 1
439 NO_DEBUG_ASSERTIONS: 1
440 DIST_REQUIRE_ALL_TOOLS: 1
441 <<: *job-macos-xl
442
443 - name: dist-x86_64-apple-alt
444 env:
445 SCRIPT: ./x.py dist
446 RUST_CONFIGURE_ARGS: --enable-extended --enable-profiler --set rust.jemalloc --set llvm.ninja=false
447 RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
448 MACOSX_DEPLOYMENT_TARGET: 10.7
449 NO_LLVM_ASSERTIONS: 1
450 NO_DEBUG_ASSERTIONS: 1
451 <<: *job-macos-xl
452
453 - name: x86_64-apple
454 env:
455 SCRIPT: ./x.py --stage 2 test
456 RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false
457 RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
458 MACOSX_DEPLOYMENT_TARGET: 10.8
459 MACOSX_STD_DEPLOYMENT_TARGET: 10.7
460 NO_LLVM_ASSERTIONS: 1
461 NO_DEBUG_ASSERTIONS: 1
462 <<: *job-macos-xl
463
464 # This target only needs to support 11.0 and up as nothing else supports the hardware
465 - name: dist-aarch64-apple
466 env:
467 SCRIPT: ./x.py dist --stage 2
468 RUST_CONFIGURE_ARGS: >-
469 --build=x86_64-apple-darwin
470 --host=aarch64-apple-darwin
471 --target=aarch64-apple-darwin
472 --enable-full-tools
473 --enable-sanitizers
474 --enable-profiler
475 --set rust.jemalloc
476 --set llvm.ninja=false
477 RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
478 SELECT_XCODE: /Applications/Xcode_12.2.app
479 USE_XCODE_CLANG: 1
480 MACOSX_DEPLOYMENT_TARGET: 11.0
481 MACOSX_STD_DEPLOYMENT_TARGET: 11.0
482 NO_LLVM_ASSERTIONS: 1
483 NO_DEBUG_ASSERTIONS: 1
484 DIST_REQUIRE_ALL_TOOLS: 1
485 # Corresponds to 16K page size
486 #
487 # Shouldn't be needed if jemalloc-sys is updated to
488 # handle this platform like iOS or if we build on
489 # aarch64-apple-darwin itself.
490 #
491 # https://github.com/gnzlbg/jemallocator/blob/c27a859e98e3cb790dc269773d9da71a1e918458/jemalloc-sys/build.rs#L237
492 JEMALLOC_SYS_WITH_LG_PAGE: 14
493 <<: *job-macos-xl
494
495 ######################
496 # Windows Builders #
497 ######################
498
499 - name: x86_64-msvc-1
500 env:
501 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
502 SCRIPT: make ci-subset-1
503 <<: *job-windows-xl
504
505 - name: x86_64-msvc-2
506 env:
507 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
508 SCRIPT: make ci-subset-2
509 <<: *job-windows-xl
510
511 - name: i686-msvc-1
512 env:
513 RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
514 SCRIPT: make ci-subset-1
515 <<: *job-windows-xl
516
517 - name: i686-msvc-2
518 env:
519 RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
520 SCRIPT: make ci-subset-2
521 <<: *job-windows-xl
522
523 - name: x86_64-msvc-cargo
524 env:
525 SCRIPT: python x.py --stage 2 test src/tools/cargotest src/tools/cargo
526 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-lld
527 VCVARS_BAT: vcvars64.bat
528 <<: *job-windows-xl
529
530 - name: x86_64-msvc-tools
531 env:
532 SCRIPT: src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstate/toolstates.json windows
533 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstate/toolstates.json
534 <<: *job-windows-xl
535
536 # 32/64-bit MinGW builds.
537 #
538 # We are using MinGW with POSIX threads since LLVM requires
539 # C++'s std::thread which is disabled in libstdc++ with win32 threads.
540 # FIXME: Libc++ doesn't have this limitation so we can avoid
541 # winpthreads if we switch to it.
542 #
543 # Instead of relying on the MinGW version installed on CI we download
544 # and install one ourselves so we won't be surprised by changes to CI's
545 # build image.
546 #
547 # Finally, note that the downloads below are all in the `rust-lang-ci` S3
548 # bucket, but they clearly didn't originate there! The downloads originally
549 # came from the mingw-w64 SourceForge download site. Unfortunately
550 # SourceForge is notoriously flaky, so we mirror it on our own infrastructure.
551
552 - name: i686-mingw-1
553 env:
554 RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
555 SCRIPT: make ci-mingw-subset-1
556 CUSTOM_MINGW: 1
557 <<: *job-windows-xl
558
559 - name: i686-mingw-2
560 env:
561 RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
562 SCRIPT: make ci-mingw-subset-2
563 CUSTOM_MINGW: 1
564 <<: *job-windows-xl
565
566 - name: x86_64-mingw-1
567 env:
568 SCRIPT: make ci-mingw-subset-1
569 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-profiler
570 CUSTOM_MINGW: 1
571 <<: *job-windows-xl
572
573 - name: x86_64-mingw-2
574 env:
575 SCRIPT: make ci-mingw-subset-2
576 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-profiler
577 CUSTOM_MINGW: 1
578 <<: *job-windows-xl
579
580 - name: dist-x86_64-msvc
581 env:
582 RUST_CONFIGURE_ARGS: >-
583 --build=x86_64-pc-windows-msvc
584 --host=x86_64-pc-windows-msvc
585 --target=x86_64-pc-windows-msvc
586 --enable-full-tools
587 --enable-profiler
588 SCRIPT: python x.py dist
589 DIST_REQUIRE_ALL_TOOLS: 1
590 <<: *job-windows-xl
591
592 - name: dist-i686-msvc
593 env:
594 RUST_CONFIGURE_ARGS: >-
595 --build=i686-pc-windows-msvc
596 --host=i686-pc-windows-msvc
597 --target=i686-pc-windows-msvc,i586-pc-windows-msvc
598 --enable-full-tools
599 --enable-profiler
600 SCRIPT: python x.py dist
601 DIST_REQUIRE_ALL_TOOLS: 1
602 <<: *job-windows-xl
603
604 - name: dist-aarch64-msvc
605 env:
606 RUST_CONFIGURE_ARGS: >-
607 --build=x86_64-pc-windows-msvc
608 --host=aarch64-pc-windows-msvc
609 --enable-full-tools
610 --enable-profiler
611 SCRIPT: python x.py dist
612 # RLS does not build for aarch64-pc-windows-msvc. See rust-lang/rls#1693
613 DIST_REQUIRE_ALL_TOOLS: 0
614 <<: *job-windows-xl
615
616 - name: dist-i686-mingw
617 env:
618 RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-full-tools --enable-profiler
619 SCRIPT: python x.py dist
620 CUSTOM_MINGW: 1
621 DIST_REQUIRE_ALL_TOOLS: 1
622 <<: *job-windows-xl
623
624 - name: dist-x86_64-mingw
625 env:
626 SCRIPT: python x.py dist
627 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-full-tools --enable-profiler
628 CUSTOM_MINGW: 1
629 DIST_REQUIRE_ALL_TOOLS: 1
630 <<: *job-windows-xl
631
632 - name: dist-x86_64-msvc-alt
633 env:
634 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler
635 SCRIPT: python x.py dist
636 <<: *job-windows-xl
637
638 try:
639 <<: *base-ci-job
640 name: try
641 env:
642 <<: [*shared-ci-variables, *prod-variables]
643 if: github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'
644 strategy:
645 matrix:
646 include:
647 - *dist-x86_64-linux
648
649 master:
650 name: master
651 runs-on: ubuntu-latest
652 env:
653 <<: [*prod-variables]
654 if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'rust-lang-ci/rust'
655 steps:
656 - name: checkout the source code
657 uses: actions/checkout@v1
658 with:
659 fetch-depth: 2
660
661 - name: publish toolstate
662 run: src/ci/publish_toolstate.sh
663 shell: bash
664 env:
665 TOOLSTATE_REPO_ACCESS_TOKEN: ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
666 <<: *step
667
668 # These jobs don't actually test anything, but they're used to tell bors the
669 # build completed, as there is no practical way to detect when a workflow is
670 # successful listening to webhooks only.
671 try-success:
672 needs: [try]
673 if: "success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
674 <<: *base-success-job
675 try-failure:
676 needs: [try]
677 if: "!success() && github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
678 <<: *base-failure-job
679 auto-success:
680 needs: [auto]
681 if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
682 <<: *base-success-job
683 auto-failure:
684 needs: [auto]
685 if: "!success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'"
686 <<: *base-failure-job