vaultwarden/azure-pipelines.yml

26 lines
634 B
YAML
Raw Normal View History

2019-02-22 17:51:30 +03: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 17:51:30 +03:00
echo "##vso[task.prependpath]$HOME/.cargo/bin"
displayName: 'Install Rust'
2019-05-20 22:54:01 +03:00
- script: |
2019-05-20 22:59:18 +03:00
sudo apt-get update
2019-05-27 01:23:42 +03:00
sudo apt-get install -y libmysql++-dev
2019-05-20 22:54:01 +03:00
displayName: Install libmysql
2019-02-22 17:51:30 +03:00
- script: |
rustc -Vv
cargo -V
displayName: Query rust and cargo versions
2019-12-01 01:32:31 +03:00
- script : cargo test --features "sqlite"
displayName: 'Test project with sqlite backend'
2019-12-01 01:32:31 +03:00
- script : cargo test --features "mysql"
displayName: 'Test project with mysql backend'