Skip to content

Commit d4e107d

Browse files
committed
Auto merge of #41580 - alexcrichton:update-beta-bootstrap, r=brson
[beta] Bootstrap beta from the real stable compiler Routine update from the dev-static urls to the static urls, updating dates as well. Should be the same artifacts.
2 parents 4dce672 + b526b22 commit d4e107d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/bootstrap/bootstrap.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def download_stage0(self):
171171
if os.path.exists(self.bin_root()):
172172
shutil.rmtree(self.bin_root())
173173
filename = "rust-std-{}-{}.tar.gz".format(channel, self.build)
174-
url = "https://dev-static.rust-lang.org/dist/" + self.stage0_rustc_date()
174+
url = "https://static.rust-lang.org/dist/" + self.stage0_rustc_date()
175175
tarball = os.path.join(rustc_cache, filename)
176176
if not os.path.exists(tarball):
177177
get("{}/{}".format(url, filename), tarball, verbose=self.verbose)
@@ -180,7 +180,7 @@ def download_stage0(self):
180180
verbose=self.verbose)
181181

182182
filename = "rustc-{}-{}.tar.gz".format(channel, self.build)
183-
url = "https://dev-static.rust-lang.org/dist/" + self.stage0_rustc_date()
183+
url = "https://static.rust-lang.org/dist/" + self.stage0_rustc_date()
184184
tarball = os.path.join(rustc_cache, filename)
185185
if not os.path.exists(tarball):
186186
get("{}/{}".format(url, filename), tarball, verbose=self.verbose)
@@ -192,7 +192,7 @@ def download_stage0(self):
192192

193193
if "pc-windows-gnu" in self.build:
194194
filename = "rust-mingw-{}-{}.tar.gz".format(channel, self.build)
195-
url = "https://dev-static.rust-lang.org/dist/" + self.stage0_rustc_date()
195+
url = "https://static.rust-lang.org/dist/" + self.stage0_rustc_date()
196196
tarball = os.path.join(rustc_cache, filename)
197197
if not os.path.exists(tarball):
198198
get("{}/{}".format(url, filename), tarball, verbose=self.verbose)
@@ -202,7 +202,7 @@ def download_stage0(self):
202202
(not os.path.exists(self.cargo()) or self.cargo_out_of_date()):
203203
self.print_what_it_means_to_bootstrap()
204204
filename = "cargo-{}-{}.tar.gz".format('0.18.0', self.build)
205-
url = "https://dev-static.rust-lang.org/dist/" + self.stage0_rustc_date()
205+
url = "https://static.rust-lang.org/dist/" + self.stage0_rustc_date()
206206
tarball = os.path.join(rustc_cache, filename)
207207
if not os.path.exists(tarball):
208208
get("{}/{}".format(url, filename), tarball, verbose=self.verbose)

src/stage0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was
1313
# released on `$date`
1414

15-
rustc: 1.17.0-2017-04-25
15+
rustc: 1.17.0-2017-04-27

0 commit comments

Comments
 (0)