Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-04 02:18:00 +01:00
25 Zeilen
648 B
YAML
25 Zeilen
648 B
YAML
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'
|
|
|
|
- script: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libmysql++-dev
|
|
displayName: Install libmysql
|
|
|
|
- script: |
|
|
rustc -Vv
|
|
cargo -V
|
|
displayName: Query rust and cargo versions
|
|
|
|
- script : cargo build --features "sqlite enable_syslog"
|
|
displayName: 'Build project with sqlite backend'
|
|
|
|
- script : cargo build --features "mysql enable_syslog"
|
|
displayName: 'Build project with mysql backend'
|