We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a7f505 commit 5b658abCopy full SHA for 5b658ab
ci/azure-install-rust.yml
@@ -4,12 +4,13 @@ steps:
4
if command -v rustup; then
5
echo `command -v rustup` `rustup -V` already installed
6
rustup self update
7
+ rustup set profile minimal
8
elif [ "$AGENT_OS" = "Windows_NT" ]; then
9
curl -sSf -o rustup-init.exe https://win.rustup.rs
- rustup-init.exe -y --default-toolchain $TOOLCHAIN
10
+ rustup-init.exe -y --default-toolchain $TOOLCHAIN --profile=minimal
11
echo "##vso[task.prependpath]$USERPROFILE/.cargo/bin"
12
else
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $TOOLCHAIN
13
+ curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $TOOLCHAIN --profile=minimal
14
echo "##vso[task.prependpath]$HOME/.cargo/bin"
15
fi
16
displayName: Install rustup
0 commit comments