mirror of https://github.com/lukechilds/cc-rs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
745 B
23 lines
745 B
steps:
|
|
- bash: |
|
|
set -e
|
|
toolchain=$TOOLCHAIN
|
|
if [ "$toolchain" = "" ]; then
|
|
toolchain=stable
|
|
fi
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $toolchain
|
|
echo "##vso[task.prependpath]$HOME/.cargo/bin"
|
|
displayName: Install rust (unix)
|
|
condition: ne( variables['Agent.OS'], 'Windows_NT' )
|
|
|
|
- script: |
|
|
curl -sSf -o rustup-init.exe https://win.rustup.rs
|
|
rustup-init.exe -y --default-toolchain stable-%TARGET%
|
|
echo ##vso[task.prependpath]%USERPROFILE%\.cargo\bin
|
|
displayName: Install rust (windows)
|
|
condition: eq( variables['Agent.OS'], 'Windows_NT' )
|
|
|
|
- script: |
|
|
rustc -Vv
|
|
cargo -V
|
|
displayName: Query rust and cargo versions
|
|
|