File tree 6 files changed +0
-49
lines changed
6 files changed +0
-49
lines changed Original file line number Diff line number Diff line change @@ -321,8 +321,6 @@ jobs:
321
321
env :
322
322
RUST_CONFIGURE_ARGS : " --build=x86_64-pc-windows-msvc --enable-profiler"
323
323
SCRIPT : make ci-subset-1
324
- NO_DEBUG_ASSERTIONS : 1
325
- NO_LLVM_ASSERTIONS : 1
326
324
os : windows-latest-xl
327
325
- name : x86_64-msvc-2
328
326
env :
@@ -333,23 +331,17 @@ jobs:
333
331
env :
334
332
RUST_CONFIGURE_ARGS : " --build=i686-pc-windows-msvc"
335
333
SCRIPT : make ci-subset-1
336
- NO_DEBUG_ASSERTIONS : 1
337
- NO_LLVM_ASSERTIONS : 1
338
334
os : windows-latest-xl
339
335
- name : i686-msvc-2
340
336
env :
341
337
RUST_CONFIGURE_ARGS : " --build=i686-pc-windows-msvc"
342
338
SCRIPT : make ci-subset-2
343
- NO_DEBUG_ASSERTIONS : 1
344
- NO_LLVM_ASSERTIONS : 1
345
339
os : windows-latest-xl
346
340
- name : x86_64-msvc-cargo
347
341
env :
348
342
SCRIPT : python x.py --stage 2 test src/tools/cargotest src/tools/cargo
349
343
RUST_CONFIGURE_ARGS : " --build=x86_64-pc-windows-msvc --enable-lld"
350
344
VCVARS_BAT : vcvars64.bat
351
- NO_DEBUG_ASSERTIONS : 1
352
- NO_LLVM_ASSERTIONS : 1
353
345
os : windows-latest-xl
354
346
- name : x86_64-msvc-tools
355
347
env :
@@ -361,8 +353,6 @@ jobs:
361
353
RUST_CONFIGURE_ARGS : " --build=i686-pc-windows-gnu"
362
354
SCRIPT : make ci-mingw-subset-1
363
355
CUSTOM_MINGW : 1
364
- NO_DEBUG_ASSERTIONS : 1
365
- NO_LLVM_ASSERTIONS : 1
366
356
os : windows-latest-xl
367
357
- name : i686-mingw-2
368
358
env :
@@ -375,8 +365,6 @@ jobs:
375
365
SCRIPT : make ci-mingw-subset-1
376
366
RUST_CONFIGURE_ARGS : " --build=x86_64-pc-windows-gnu --enable-profiler"
377
367
CUSTOM_MINGW : 1
378
- NO_DEBUG_ASSERTIONS : 1
379
- NO_LLVM_ASSERTIONS : 1
380
368
os : windows-latest-xl
381
369
- name : x86_64-mingw-2
382
370
env :
Original file line number Diff line number Diff line change @@ -27,6 +27,3 @@ RUN echo "optimize = false" >> /config/nopt-std-config.toml
27
27
ENV RUST_CONFIGURE_ARGS --build=i686-unknown-linux-gnu --disable-optimize-tests
28
28
ENV SCRIPT python3 ../x.py test --stage 0 --config /config/nopt-std-config.toml library/std \
29
29
&& python3 ../x.py --stage 2 test
30
-
31
- # FIXME(#59637) takes too long on CI right now
32
- ENV NO_LLVM_ASSERTIONS=1 NO_DEBUG_ASSERTIONS=1
Original file line number Diff line number Diff line change @@ -28,6 +28,3 @@ ENV SCRIPT python3 ../x.py --stage 2 test \
28
28
--exclude src/test/rustdoc-js \
29
29
--exclude src/tools/error_index_generator \
30
30
--exclude src/tools/linkchecker
31
-
32
- # FIXME(#59637) takes too long on CI right now
33
- ENV NO_LLVM_ASSERTIONS=1 NO_DEBUG_ASSERTIONS=1
Original file line number Diff line number Diff line change @@ -22,10 +22,3 @@ RUN sh /scripts/sccache.sh
22
22
ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu --set rust.ignore-git=false
23
23
ENV SCRIPT python3 ../x.py --stage 2 test distcheck
24
24
ENV DIST_SRC 1
25
-
26
- # The purpose of this builder is to test that we can `./x.py --stage 2 test` successfully
27
- # from a tarball, not to test LLVM/rustc's own set of assertions. These cause a
28
- # significant hit to CI compile time (over a half hour as observed in #61185),
29
- # so disable assertions for this builder.
30
- ENV NO_LLVM_ASSERTIONS=1
31
- ENV NO_DEBUG_ASSERTIONS=1
Original file line number Diff line number Diff line change @@ -57,9 +57,3 @@ ENV SCRIPT python2.7 ../x.py --stage 2 test --exclude src/tools/tidy && \
57
57
python2.7 ../x.py --stage 2 test src/test/ui --pass=check && \
58
58
# Run tidy at the very end, after all the other tests.
59
59
python2.7 ../x.py --stage 2 test src/tools/tidy
60
-
61
- # The purpose of this container isn't to test with debug assertions and
62
- # this is run on all PRs, so let's get speedier builds by disabling these extra
63
- # checks.
64
- ENV NO_DEBUG_ASSERTIONS=1
65
- ENV NO_LLVM_ASSERTIONS=1
Original file line number Diff line number Diff line change @@ -500,9 +500,6 @@ jobs:
500
500
env :
501
501
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --enable-profiler
502
502
SCRIPT : make ci-subset-1
503
- # FIXME(#59637)
504
- NO_DEBUG_ASSERTIONS : 1
505
- NO_LLVM_ASSERTIONS : 1
506
503
<< : *job-windows-xl
507
504
508
505
- name : x86_64-msvc-2
@@ -515,28 +512,19 @@ jobs:
515
512
env :
516
513
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc
517
514
SCRIPT : make ci-subset-1
518
- # FIXME(#59637)
519
- NO_DEBUG_ASSERTIONS : 1
520
- NO_LLVM_ASSERTIONS : 1
521
515
<< : *job-windows-xl
522
516
523
517
- name : i686-msvc-2
524
518
env :
525
519
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc
526
520
SCRIPT : make ci-subset-2
527
- # FIXME(#59637)
528
- NO_DEBUG_ASSERTIONS : 1
529
- NO_LLVM_ASSERTIONS : 1
530
521
<< : *job-windows-xl
531
522
532
523
- name : x86_64-msvc-cargo
533
524
env :
534
525
SCRIPT : python x.py --stage 2 test src/tools/cargotest src/tools/cargo
535
526
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --enable-lld
536
527
VCVARS_BAT : vcvars64.bat
537
- # FIXME(#59637)
538
- NO_DEBUG_ASSERTIONS : 1
539
- NO_LLVM_ASSERTIONS : 1
540
528
<< : *job-windows-xl
541
529
542
530
- name : x86_64-msvc-tools
@@ -566,9 +554,6 @@ jobs:
566
554
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-gnu
567
555
SCRIPT : make ci-mingw-subset-1
568
556
CUSTOM_MINGW : 1
569
- # FIXME(#59637)
570
- NO_DEBUG_ASSERTIONS : 1
571
- NO_LLVM_ASSERTIONS : 1
572
557
<< : *job-windows-xl
573
558
574
559
- name : i686-mingw-2
@@ -583,9 +568,6 @@ jobs:
583
568
SCRIPT : make ci-mingw-subset-1
584
569
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-gnu --enable-profiler
585
570
CUSTOM_MINGW : 1
586
- # FIXME(#59637)
587
- NO_DEBUG_ASSERTIONS : 1
588
- NO_LLVM_ASSERTIONS : 1
589
571
<< : *job-windows-xl
590
572
591
573
- name : x86_64-mingw-2
You can’t perform that action at this time.
0 commit comments