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
|
|
|
|
|
2019-05-30 22:19:58 +02:00
|
|
|
- script : cargo build --features "sqlite"
|
2019-05-27 00:19:59 +02:00
|
|
|
displayName: 'Build project with sqlite backend'
|
|
|
|
|
2019-05-30 22:19:58 +02:00
|
|
|
- script : cargo build --features "mysql"
|
2019-05-27 00:19:59 +02:00
|
|
|
displayName: 'Build project with mysql backend'
|