1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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 --all-features displayName: 'Build project'