From 49be10a8179165d24bbb8eb3490c4ca6f94b42c4 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Fri, 1 Nov 2019 07:42:33 -0700 Subject: Update libc crate to 0.2.66 This change updates the libc crate to version 0.2.66. Import subrepo libc/:libc at 4f11029a68040c90acf771976b019c1ef273a8cd --- libc/ci/azure-install-rust.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'libc/ci/azure-install-rust.yml') diff --git a/libc/ci/azure-install-rust.yml b/libc/ci/azure-install-rust.yml index eba0669..31b0714 100644 --- a/libc/ci/azure-install-rust.yml +++ b/libc/ci/azure-install-rust.yml @@ -6,10 +6,12 @@ steps: toolchain=nightly fi if command -v rustup; then - rustup update $toolchain + # Uncomment when rustup on Azure is updated + #rustup set profile minimal + rustup update --force $toolchain rustup default $toolchain else - curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $toolchain + curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $toolchain --profile=minimal echo "##vso[task.prependpath]$HOME/.cargo/bin" fi displayName: Install rust (unix) @@ -17,7 +19,9 @@ steps: - script: | @echo on if not defined TOOLCHAIN set TOOLCHAIN=nightly - rustup update %TOOLCHAIN%-%TARGET% + :: Uncomment when rustup on Azure is updated + ::rustup set profile minimal + rustup update --no-self-update %TOOLCHAIN%-%TARGET% rustup default %TOOLCHAIN%-%TARGET% displayName: Install rust (windows) condition: eq( variables['Agent.OS'], 'Windows_NT' ) -- cgit v1.2.1