Skip to content

Commit 7d68a5a

Browse files
committed
Revert "Fetch "alt" rust std build when we do so for rustc"
This reverts commit 6b52330. This is unnecessary now that rust-lang/rust#42967 is fixed by rust-lang/rust#43167. This migth be a fix for #17604
1 parent a0c13dd commit 7d68a5a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

python/servo/bootstrap_commands.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,8 @@ def bootstrap_rustc(self, force=False, target=[], stable=False):
135135
% (version, target_triple))
136136
tgz_file = install_dir + ('rust-std-%s-%s.tar.gz' % (version, target_triple))
137137
else:
138-
tarball = "%s/rust-std-nightly-%s.tar.gz" % (version, target_triple)
139-
base_url = "https://s3.amazonaws.com/rust-lang-ci/rustc-builds"
140-
if not self.config["build"]["llvm-assertions"]:
141-
base_url += "-alt"
142-
std_url = base_url + "/" + tarball
138+
std_url = ("https://s3.amazonaws.com/rust-lang-ci/rustc-builds/%s/rust-std-nightly-%s.tar.gz"
139+
% (version, target_triple))
143140
tgz_file = install_dir + ('rust-std-nightly-%s.tar.gz' % target_triple)
144141

145142
download_file("Host rust library for target %s" % target_triple, std_url, tgz_file)

0 commit comments

Comments
 (0)