summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-09-12 11:41:26 +0200
committergnzlbg <gonzalobg88@gmail.com>2019-09-12 11:41:26 +0200
commitc25c36025dbc1f3073d365c4d254de5bbb570e6f (patch)
tree3229f46544206a8b7b6bd6e76dcd4bcf276f25fa
parent71e298f993cff4b3a50329e94494c1523d9bd5e7 (diff)
downloadrust-libc-c25c36025dbc1f3073d365c4d254de5bbb570e6f.tar.gz
Workaround Azure images not supporting rustup self update
-rw-r--r--ci/azure-install-rust.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/azure-install-rust.yml b/ci/azure-install-rust.yml
index eba066923f..87a41ec57d 100644
--- a/ci/azure-install-rust.yml
+++ b/ci/azure-install-rust.yml
@@ -17,7 +17,7 @@ steps:
- script: |
@echo on
if not defined TOOLCHAIN set TOOLCHAIN=nightly
- rustup update %TOOLCHAIN%-%TARGET%
+ rustup update --no-self-update %TOOLCHAIN%-%TARGET%
rustup default %TOOLCHAIN%-%TARGET%
displayName: Install rust (windows)
condition: eq( variables['Agent.OS'], 'Windows_NT' )