From b526b227f11968a270a594bffb7c5f4386885f90 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 27 Apr 2017 09:25:27 -0700 Subject: [PATCH] Boostrap 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. --- src/bootstrap/bootstrap.py | 8 ++++---- src/stage0.txt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 9d8090c9ce382..6cd9496b7a670 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -171,7 +171,7 @@ def download_stage0(self): if os.path.exists(self.bin_root()): shutil.rmtree(self.bin_root()) filename = "rust-std-{}-{}.tar.gz".format(channel, self.build) - url = "https://dev-static.rust-lang.org/dist/" + self.stage0_rustc_date() + url = "https://static.rust-lang.org/dist/" + self.stage0_rustc_date() tarball = os.path.join(rustc_cache, filename) if not os.path.exists(tarball): get("{}/{}".format(url, filename), tarball, verbose=self.verbose) @@ -180,7 +180,7 @@ def download_stage0(self): verbose=self.verbose) filename = "rustc-{}-{}.tar.gz".format(channel, self.build) - url = "https://dev-static.rust-lang.org/dist/" + self.stage0_rustc_date() + url = "https://static.rust-lang.org/dist/" + self.stage0_rustc_date() tarball = os.path.join(rustc_cache, filename) if not os.path.exists(tarball): get("{}/{}".format(url, filename), tarball, verbose=self.verbose) @@ -192,7 +192,7 @@ def download_stage0(self): if "pc-windows-gnu" in self.build: filename = "rust-mingw-{}-{}.tar.gz".format(channel, self.build) - url = "https://dev-static.rust-lang.org/dist/" + self.stage0_rustc_date() + url = "https://static.rust-lang.org/dist/" + self.stage0_rustc_date() tarball = os.path.join(rustc_cache, filename) if not os.path.exists(tarball): get("{}/{}".format(url, filename), tarball, verbose=self.verbose) @@ -202,7 +202,7 @@ def download_stage0(self): (not os.path.exists(self.cargo()) or self.cargo_out_of_date()): self.print_what_it_means_to_bootstrap() filename = "cargo-{}-{}.tar.gz".format('0.18.0', self.build) - url = "https://dev-static.rust-lang.org/dist/" + self.stage0_rustc_date() + url = "https://static.rust-lang.org/dist/" + self.stage0_rustc_date() tarball = os.path.join(rustc_cache, filename) if not os.path.exists(tarball): get("{}/{}".format(url, filename), tarball, verbose=self.verbose) diff --git a/src/stage0.txt b/src/stage0.txt index 60bba262f8e75..38cbfa0dec738 100644 --- a/src/stage0.txt +++ b/src/stage0.txt @@ -12,4 +12,4 @@ # tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was # released on `$date` -rustc: 1.17.0-2017-04-25 +rustc: 1.17.0-2017-04-27