From 1ae3e68087c38ab9aeeb3b112d9d20c5b60ac1bf Mon Sep 17 00:00:00 2001 From: Jeb Rosen Date: Tue, 21 Jan 2020 08:04:06 -0800 Subject: [PATCH] Fix Windows CI by forcing 64-bit rustup installation. --- .github/azure-pipelines-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/azure-pipelines-template.yml b/.github/azure-pipelines-template.yml index c0b8d41c..005e8f8e 100644 --- a/.github/azure-pipelines-template.yml +++ b/.github/azure-pipelines-template.yml @@ -58,7 +58,7 @@ jobs: - ${{ if eq(parameters.name, 'Windows') }}: - script: | curl -sSf -o rustup-init.exe https://win.rustup.rs - rustup-init.exe -y --default-toolchain $(rust_version) + rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain $(rust_version) echo ##vso[task.setvariable variable=PATH]%PATH%;%USERPROFILE%\.cargo\bin displayName: 'Install Rust ($(rust_version))'