Skip to content

Commit 39f68d2

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 544e94f commit 39f68d2

File tree

5 files changed

+2
-290
lines changed

5 files changed

+2
-290
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
@@ -172,7 +172,6 @@
172172
util
173173
import
174174
STATIC_RUST_LANG_ORG_DIST
175-
URLOPEN_KWARGS
176175
CommandProvider
177176
class
178177
MachCommands
@@ -746,113 +745,12 @@
746745
=
747746
STATIC_RUST_LANG_ORG_DIST
748747

749-
elif
750-
self
751-
.
752-
config
753-
[
754-
"
755-
build
756-
"
757-
]
758-
[
759-
"
760-
llvm
761-
-
762-
assertions
763-
"
764-
]
765-
:
766-
767-
base_url
768-
=
769-
nightly_dist
770-
771748
else
772749
:
773750

774-
import
775-
toml
776-
777-
channel
778-
=
779-
nightly_dist
780-
+
781-
"
782-
/
783-
channel
784-
-
785-
rust
786-
-
787-
nightly
788-
.
789-
toml
790-
"
791-
792-
manifest
793-
=
794-
toml
795-
.
796-
load
797-
(
798-
urllib2
799-
.
800-
urlopen
801-
(
802-
channel
803-
*
804-
*
805-
URLOPEN_KWARGS
806-
)
807-
)
808-
809-
nightly_commit_hash
810-
=
811-
manifest
812-
[
813-
"
814-
pkg
815-
"
816-
]
817-
[
818-
"
819-
rustc
820-
"
821-
]
822-
[
823-
"
824-
git_commit_hash
825-
"
826-
]
827-
828751
base_url
829752
=
830-
"
831-
https
832-
:
833-
/
834-
/
835-
s3
836-
.
837-
amazonaws
838-
.
839-
com
840-
/
841-
rust
842-
-
843-
lang
844-
-
845-
ci
846-
/
847-
rustc
848-
-
849-
builds
850-
-
851-
alt
852-
/
853-
"
854-
+
855-
nightly_commit_hash
753+
nightly_dist
856754

857755
rustc_url
858756
=

0 commit comments

Comments
 (0)