Taskcluster: use current rustup.rs on Windows

1.18.3 includes speed improvements when excracting tarballs:
https://github.com/rust-lang/rustup.rs/blob/1.18.3/CHANGELOG.md
This commit is contained in:
Simon Sapin 2019-05-23 13:38:22 +02:00
parent e0c95ed855
commit 3211c6628e

View file

@ -485,11 +485,7 @@ class WindowsGenericWorkerTask(GenericWorkerTask):
.with_early_script( .with_early_script(
"%HOMEDRIVE%%HOMEPATH%\\rustup-init.exe --default-toolchain none -y" "%HOMEDRIVE%%HOMEPATH%\\rustup-init.exe --default-toolchain none -y"
) \ ) \
.with_file_mount( .with_file_mount("https://win.rustup.rs/x86_64", path="rustup-init.exe")
"https://static.rust-lang.org/rustup/archive/" +
"1.17.0/x86_64-pc-windows-msvc/rustup-init.exe",
sha256="002127adeaaee6ef8d82711b5c2881a1db873262f63aea60cee9632f207e8f29",
)
def with_repacked_msi(self, url, sha256, path): def with_repacked_msi(self, url, sha256, path):
""" """