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
634 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) --profile=minimal
2019-02-22 15:51:30 +01:00
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
2019-11-30 23:32:31 +01:00
- script : cargo test --features "sqlite"
displayName: 'Test project with sqlite backend'
2019-11-30 23:32:31 +01:00
- script : cargo test --features "mysql"
displayName: 'Test project with mysql backend'