mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-10-31 18:36:37 +00:00
18 lines
400 B
YAML
18 lines
400 B
YAML
|
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'
|