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.
18 lines
400 B
18 lines
400 B
6 years ago
|
pool:
|
||
|
vmImage: 'Ubuntu-16.04'
|
||
|
|
||
|
steps:
|
||
|
- script: |
|
||
|
ls -la
|
||
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $(cat rust-toolchain)
|
||
|
echo "##vso[task.prependpath]$HOME/.cargo/bin"
|
||
|
displayName: 'Install Rust'
|
||
|
|
||
|
- script: |
|
||
|
rustc -Vv
|
||
|
cargo -V
|
||
|
displayName: Query rust and cargo versions
|
||
|
|
||
|
- script : cargo build --verbose --all-features
|
||
|
displayName: 'Build project'
|