diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 7e82e18..a733ad4 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -43,7 +43,9 @@ jobs: # wasi-libc. Rust's llvm-tools include llvm-nm, and Rust is installed on Azure's Windows # images, so we can use that to make llvm-nm available without too much overhead. set -euo pipefail - rustup update stable + # Add --no-self-update as a workaround for + # https://github.com/microsoft/azure-pipelines-image-generation/issues/1224 + rustup update stable --no-self-update rustup default stable rustup component add llvm-tools-preview echo "##vso[task.setvariable variable=WASM_NM;]$(rustc --print sysroot|sed 's|C:|/c|'|sed 's|\\|/|g')/lib/rustlib/x86_64-pc-windows-msvc/bin/llvm-nm.exe"