compiler-builtins-zynq/ci/azure-install-rust.yml

27 lines
779 B
YAML
Raw Normal View History

parameters:
toolchain: 'nightly'
steps:
- bash: |
2019-04-02 22:58:12 +08:00
set -e
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $TOOLCHAIN
2019-04-02 22:58:12 +08:00
echo "##vso[task.prependpath]$HOME/.cargo/bin"
displayName: Install rust
condition: ne( variables['Agent.OS'], 'Windows_NT' )
env:
TOOLCHAIN: ${{ parameters.toolchain }}
- script: |
curl -sSf -o rustup-init.exe https://win.rustup.rs
2019-04-03 03:12:19 +08:00
rustup-init.exe -y --default-toolchain %TOOLCHAIN%-%TARGET%
2019-04-02 22:58:12 +08:00
echo ##vso[task.prependpath]%USERPROFILE%\.cargo\bin
displayName: Install rust
condition: eq( variables['Agent.OS'], 'Windows_NT' )
env:
TOOLCHAIN: ${{ parameters.toolchain }}
- script: |
rustc -Vv
cargo -V
displayName: Query rust and cargo versions