Skip to content

Commit 8dce254

Browse files
committed
servo: Merge #19213 - Stop using "alternate" rustc builds (from servo:nightly); r=nox
With rust-lang/rust#45810, normal Nightly now has LLVM assertions disabled. This allows us to entirely stop relying on private/unstable Rust CI artifacts being and remaining available: https://internals.rust-lang.org/t/public-stable-rust-services/6072 Source-Repo: https://github.com/servo/servo Source-Revision: 856dc3c90ab920880e0bdca171720f37e40dd597 UltraBlame original commit: 6406e73a24bca7b3355ff438c283fe0bd20afdaf
1 parent 89fb0d0 commit 8dce254

File tree

5 files changed

+2
-271
lines changed

5 files changed

+2
-271
lines changed

servo/etc/ci/buildbot_steps.yml

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -814,9 +814,6 @@ zlib
814814
lib
815815
/
816816
pkgconfig
817-
SERVO_RUSTC_LLVM_ASSERTIONS
818-
=
819-
1
820817
.
821818
/
822819
mach
@@ -826,9 +823,6 @@ build
826823
dev
827824
-
828825
env
829-
SERVO_RUSTC_LLVM_ASSERTIONS
830-
=
831-
1
832826
.
833827
/
834828
mach
@@ -837,9 +831,6 @@ test
837831
unit
838832
-
839833
env
840-
SERVO_RUSTC_LLVM_ASSERTIONS
841-
=
842-
1
843834
.
844835
/
845836
mach
@@ -849,9 +840,6 @@ package
849840
dev
850841
-
851842
env
852-
SERVO_RUSTC_LLVM_ASSERTIONS
853-
=
854-
1
855843
.
856844
/
857845
mach
@@ -1440,9 +1428,6 @@ self
14401428
test
14411429
-
14421430
env
1443-
SERVO_RUSTC_LLVM_ASSERTIONS
1444-
=
1445-
1
14461431
.
14471432
/
14481433
mach
@@ -1452,9 +1437,6 @@ build
14521437
dev
14531438
-
14541439
env
1455-
SERVO_RUSTC_LLVM_ASSERTIONS
1456-
=
1457-
1
14581440
.
14591441
/
14601442
mach
@@ -1463,9 +1445,6 @@ test
14631445
compiletest
14641446
-
14651447
env
1466-
SERVO_RUSTC_LLVM_ASSERTIONS
1467-
=
1468-
1
14691448
.
14701449
/
14711450
mach
@@ -1474,9 +1453,6 @@ test
14741453
unit
14751454
-
14761455
env
1477-
SERVO_RUSTC_LLVM_ASSERTIONS
1478-
=
1479-
1
14801456
.
14811457
/
14821458
mach
@@ -1486,9 +1462,6 @@ package
14861462
dev
14871463
-
14881464
env
1489-
SERVO_RUSTC_LLVM_ASSERTIONS
1490-
=
1491-
1
14921465
.
14931466
/
14941467
mach
@@ -1497,9 +1470,6 @@ build
14971470
cef
14981471
-
14991472
env
1500-
SERVO_RUSTC_LLVM_ASSERTIONS
1501-
=
1502-
1
15031473
.
15041474
/
15051475
mach
@@ -1988,9 +1958,6 @@ keep
19881958
force
19891959
-
19901960
env
1991-
SERVO_RUSTC_LLVM_ASSERTIONS
1992-
=
1993-
1
19941961
ANDROID_SDK
19951962
=
19961963
/
@@ -2019,9 +1986,6 @@ android
20191986
dev
20201987
-
20211988
env
2022-
SERVO_RUSTC_LLVM_ASSERTIONS
2023-
=
2024-
1
20251989
ANDROID_SDK
20261990
=
20271991
/
@@ -2101,9 +2065,6 @@ keep
21012065
force
21022066
-
21032067
env
2104-
SERVO_RUSTC_LLVM_ASSERTIONS
2105-
=
2106-
1
21072068
ANDROID_SDK
21082069
=
21092070
/
@@ -2132,9 +2093,6 @@ android
21322093
release
21332094
-
21342095
env
2135-
SERVO_RUSTC_LLVM_ASSERTIONS
2136-
=
2137-
1
21382096
ANDROID_SDK
21392097
=
21402098
/
@@ -2187,9 +2145,6 @@ keep
21872145
force
21882146
-
21892147
env
2190-
SERVO_RUSTC_LLVM_ASSERTIONS
2191-
=
2192-
1
21932148
.
21942149
/
21952150
mach
@@ -2248,9 +2203,6 @@ keep
22482203
force
22492204
-
22502205
env
2251-
SERVO_RUSTC_LLVM_ASSERTIONS
2252-
=
2253-
1
22542206
.
22552207
/
22562208
mach

servo/python/servo/bootstrap_commands.py

Lines changed: 1 addition & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
util
7272
import
7373
STATIC_RUST_LANG_ORG_DIST
74-
URLOPEN_KWARGS
7574
CommandProvider
7675
class
7776
MachCommands
@@ -560,113 +559,12 @@
560559
=
561560
STATIC_RUST_LANG_ORG_DIST
562561

563-
elif
564-
self
565-
.
566-
config
567-
[
568-
"
569-
build
570-
"
571-
]
572-
[
573-
"
574-
llvm
575-
-
576-
assertions
577-
"
578-
]
579-
:
580-
581-
base_url
582-
=
583-
nightly_dist
584-
585562
else
586563
:
587564

588-
import
589-
toml
590-
591-
channel
592-
=
593-
nightly_dist
594-
+
595-
"
596-
/
597-
channel
598-
-
599-
rust
600-
-
601-
nightly
602-
.
603-
toml
604-
"
605-
606-
manifest
607-
=
608-
toml
609-
.
610-
load
611-
(
612-
urllib2
613-
.
614-
urlopen
615-
(
616-
channel
617-
*
618-
*
619-
URLOPEN_KWARGS
620-
)
621-
)
622-
623-
nightly_commit_hash
624-
=
625-
manifest
626-
[
627-
"
628-
pkg
629-
"
630-
]
631-
[
632-
"
633-
rustc
634-
"
635-
]
636-
[
637-
"
638-
git_commit_hash
639-
"
640-
]
641-
642565
base_url
643566
=
644-
"
645-
https
646-
:
647-
/
648-
/
649-
s3
650-
.
651-
amazonaws
652-
.
653-
com
654-
/
655-
rust
656-
-
657-
lang
658-
-
659-
ci
660-
/
661-
rustc
662-
-
663-
builds
664-
-
665-
alt
666-
/
667-
"
668-
+
669-
nightly_commit_hash
567+
nightly_dist
670568

671569
rustc_url
672570
=

0 commit comments

Comments
 (0)