0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-15 02:18:23 +02:00
bitwarden_rs/azure-pipelines.yml

26 lines
620 B
YAML
Raw Normal View History

2019-02-22 15:51:30 +01: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'
2019-05-20 21:54:01 +02:00
- script: |
2019-05-20 21:59:18 +02:00
sudo apt-get update
2019-05-27 00:23:42 +02:00
sudo apt-get install -y libmysql++-dev
2019-05-20 21:54:01 +02:00
displayName: Install libmysql
2019-02-22 15:51:30 +01:00
- script: |
rustc -Vv
cargo -V
displayName: Query rust and cargo versions
- script : cargo build --features "sqlite"
displayName: 'Build project with sqlite backend'
- script : cargo build --features "mysql"
displayName: 'Build project with mysql backend'