bitwarden_rs/azure-pipelines.yml

18 lines
390 B
YAML
Raw Normal View History

2019-02-22 14:51:30 +00:00
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
2019-02-22 14:51:30 +00:00
displayName: 'Build project'