2019-02-22 14:51:30 +00:00
|
|
|
pool:
|
|
|
|
vmImage: 'Ubuntu-16.04'
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
ls -la
|
2019-10-15 19:21:37 +00:00
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $(cat rust-toolchain) --profile=minimal
|
2019-02-22 14:51:30 +00:00
|
|
|
echo "##vso[task.prependpath]$HOME/.cargo/bin"
|
|
|
|
displayName: 'Install Rust'
|
|
|
|
|
2019-05-20 19:54:01 +00:00
|
|
|
- script: |
|
2019-05-20 19:59:18 +00:00
|
|
|
sudo apt-get update
|
2019-05-26 22:23:42 +00:00
|
|
|
sudo apt-get install -y libmysql++-dev
|
2019-05-20 19:54:01 +00:00
|
|
|
displayName: Install libmysql
|
|
|
|
|
2019-02-22 14:51:30 +00:00
|
|
|
- script: |
|
|
|
|
rustc -Vv
|
|
|
|
cargo -V
|
|
|
|
displayName: Query rust and cargo versions
|
|
|
|
|
2019-11-30 22:32:31 +00:00
|
|
|
- script : cargo test --features "sqlite"
|
|
|
|
displayName: 'Test project with sqlite backend'
|
2019-05-26 22:19:59 +00:00
|
|
|
|
2019-11-30 22:32:31 +00:00
|
|
|
- script : cargo test --features "mysql"
|
|
|
|
displayName: 'Test project with mysql backend'
|