59
59
uses : actions/checkout@v1
60
60
with :
61
61
fetch-depth : 2
62
- - name : configure GitHub Actions to kill the build when outdated
63
- uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
64
- with :
65
- github_token : " ${{ secrets.github_token }}"
66
- if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
67
62
- name : configure the PR in which the error message will be posted
68
63
run : " echo \" [CI_PR_NUMBER=$num]\" "
69
64
env :
77
72
- name : decide whether to skip this job
78
73
run : src/ci/scripts/should-skip-this.sh
79
74
if : success() && !env.SKIP_JOB
75
+ - name : configure GitHub Actions to kill the build when outdated
76
+ uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
77
+ with :
78
+ github_token : " ${{ secrets.github_token }}"
79
+ if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try' && !env.RUST_CI_TEMP_SKIP_CANCEL_OUTDATED"
80
80
- name : collect CPU statistics
81
81
run : src/ci/scripts/collect-cpu-stats.sh
82
82
if : success() && !env.SKIP_JOB
@@ -163,11 +163,6 @@ jobs:
163
163
uses : actions/checkout@v1
164
164
with :
165
165
fetch-depth : 2
166
- - name : configure GitHub Actions to kill the build when outdated
167
- uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
168
- with :
169
- github_token : " ${{ secrets.github_token }}"
170
- if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
171
166
- name : configure the PR in which the error message will be posted
172
167
run : " echo \" [CI_PR_NUMBER=$num]\" "
173
168
env :
@@ -181,6 +176,11 @@ jobs:
181
176
- name : decide whether to skip this job
182
177
run : src/ci/scripts/should-skip-this.sh
183
178
if : success() && !env.SKIP_JOB
179
+ - name : configure GitHub Actions to kill the build when outdated
180
+ uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
181
+ with :
182
+ github_token : " ${{ secrets.github_token }}"
183
+ if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try' && !env.RUST_CI_TEMP_SKIP_CANCEL_OUTDATED"
184
184
- name : collect CPU statistics
185
185
run : src/ci/scripts/collect-cpu-stats.sh
186
186
if : success() && !env.SKIP_JOB
@@ -364,9 +364,6 @@ jobs:
364
364
- name : x86_64-gnu-distcheck
365
365
os : ubuntu-latest-xl
366
366
env : {}
367
- - name : x86_64-gnu-full-bootstrap
368
- os : ubuntu-latest-xl
369
- env : {}
370
367
- name : x86_64-gnu-llvm-8
371
368
env :
372
369
RUST_BACKTRACE : 1
@@ -434,15 +431,15 @@ jobs:
434
431
- name : x86_64-mingw-1
435
432
env :
436
433
SCRIPT : make ci-mingw-subset-1
437
- RUST_CONFIGURE_ARGS : " --build=x86_64-pc-windows-gnu"
434
+ RUST_CONFIGURE_ARGS : " --build=x86_64-pc-windows-gnu --enable-profiler "
438
435
CUSTOM_MINGW : 1
439
436
NO_DEBUG_ASSERTIONS : 1
440
437
NO_LLVM_ASSERTIONS : 1
441
438
os : windows-latest-xl
442
439
- name : x86_64-mingw-2
443
440
env :
444
441
SCRIPT : make ci-mingw-subset-2
445
- RUST_CONFIGURE_ARGS : " --build=x86_64-pc-windows-gnu"
442
+ RUST_CONFIGURE_ARGS : " --build=x86_64-pc-windows-gnu --enable-profiler "
446
443
CUSTOM_MINGW : 1
447
444
os : windows-latest-xl
448
445
- name : dist-x86_64-msvc
@@ -485,11 +482,6 @@ jobs:
485
482
uses : actions/checkout@v1
486
483
with :
487
484
fetch-depth : 2
488
- - name : configure GitHub Actions to kill the build when outdated
489
- uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
490
- with :
491
- github_token : " ${{ secrets.github_token }}"
492
- if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
493
485
- name : configure the PR in which the error message will be posted
494
486
run : " echo \" [CI_PR_NUMBER=$num]\" "
495
487
env :
@@ -503,6 +495,11 @@ jobs:
503
495
- name : decide whether to skip this job
504
496
run : src/ci/scripts/should-skip-this.sh
505
497
if : success() && !env.SKIP_JOB
498
+ - name : configure GitHub Actions to kill the build when outdated
499
+ uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
500
+ with :
501
+ github_token : " ${{ secrets.github_token }}"
502
+ if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try' && !env.RUST_CI_TEMP_SKIP_CANCEL_OUTDATED"
506
503
- name : collect CPU statistics
507
504
run : src/ci/scripts/collect-cpu-stats.sh
508
505
if : success() && !env.SKIP_JOB
@@ -586,31 +583,34 @@ jobs:
586
583
- name : dist-x86_64-apple
587
584
env :
588
585
SCRIPT : " ./x.py dist"
589
- RUST_CONFIGURE_ARGS : " --target=aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc"
586
+ RUST_CONFIGURE_ARGS : " --target=aarch64-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false "
590
587
RUSTC_RETRY_LINKER_ON_SEGFAULT : 1
591
588
MACOSX_DEPLOYMENT_TARGET : 10.7
592
589
NO_LLVM_ASSERTIONS : 1
593
590
NO_DEBUG_ASSERTIONS : 1
594
591
DIST_REQUIRE_ALL_TOOLS : 1
592
+ RUST_CI_TEMP_SKIP_CANCEL_OUTDATED : 1
595
593
os : macos-latest
596
594
- name : dist-x86_64-apple-alt
597
595
env :
598
596
SCRIPT : " ./x.py dist"
599
- RUST_CONFIGURE_ARGS : " --enable-extended --enable-profiler --set rust.jemalloc"
597
+ RUST_CONFIGURE_ARGS : " --enable-extended --enable-profiler --set rust.jemalloc --set llvm.ninja=false "
600
598
RUSTC_RETRY_LINKER_ON_SEGFAULT : 1
601
599
MACOSX_DEPLOYMENT_TARGET : 10.7
602
600
NO_LLVM_ASSERTIONS : 1
603
601
NO_DEBUG_ASSERTIONS : 1
602
+ RUST_CI_TEMP_SKIP_CANCEL_OUTDATED : 1
604
603
os : macos-latest
605
604
- name : x86_64-apple
606
605
env :
607
606
SCRIPT : " ./x.py --stage 2 test"
608
- RUST_CONFIGURE_ARGS : " --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc"
607
+ RUST_CONFIGURE_ARGS : " --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false "
609
608
RUSTC_RETRY_LINKER_ON_SEGFAULT : 1
610
609
MACOSX_DEPLOYMENT_TARGET : 10.8
611
610
MACOSX_STD_DEPLOYMENT_TARGET : 10.7
612
611
NO_LLVM_ASSERTIONS : 1
613
612
NO_DEBUG_ASSERTIONS : 1
613
+ RUST_CI_TEMP_SKIP_CANCEL_OUTDATED : 1
614
614
os : macos-latest
615
615
timeout-minutes : 600
616
616
runs-on : " ${{ matrix.os }}"
@@ -621,11 +621,6 @@ jobs:
621
621
uses : actions/checkout@v1
622
622
with :
623
623
fetch-depth : 2
624
- - name : configure GitHub Actions to kill the build when outdated
625
- uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
626
- with :
627
- github_token : " ${{ secrets.github_token }}"
628
- if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
629
624
- name : configure the PR in which the error message will be posted
630
625
run : " echo \" [CI_PR_NUMBER=$num]\" "
631
626
env :
@@ -639,6 +634,11 @@ jobs:
639
634
- name : decide whether to skip this job
640
635
run : src/ci/scripts/should-skip-this.sh
641
636
if : success() && !env.SKIP_JOB
637
+ - name : configure GitHub Actions to kill the build when outdated
638
+ uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
639
+ with :
640
+ github_token : " ${{ secrets.github_token }}"
641
+ if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try' && !env.RUST_CI_TEMP_SKIP_CANCEL_OUTDATED"
642
642
- name : collect CPU statistics
643
643
run : src/ci/scripts/collect-cpu-stats.sh
644
644
if : success() && !env.SKIP_JOB
0 commit comments