Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-04 02:18:00 +01:00
5bdcfe128d
Updated the azure-pipelines.yml to build multidb now. - Updated to Ubuntu 18.04 (Closer matches the docker builds) - Added some really needed apt packages to be sure that they are installed - Now run cargo test using all database backeds in one go.
22 Zeilen
669 B
YAML
22 Zeilen
669 B
YAML
pool:
|
|
vmImage: 'Ubuntu-18.04'
|
|
|
|
steps:
|
|
- script: |
|
|
ls -la
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $(cat rust-toolchain) --profile=minimal
|
|
echo "##vso[task.prependpath]$HOME/.cargo/bin"
|
|
displayName: 'Install Rust'
|
|
|
|
- script: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y --no-install-recommends build-essential libmariadb-dev-compat libpq-dev libssl-dev pkgconf
|
|
displayName: 'Install build libraries.'
|
|
|
|
- script: |
|
|
rustc -Vv
|
|
cargo -V
|
|
displayName: Query rust and cargo versions
|
|
|
|
- script : cargo test --features "sqlite,mysql,postgresql"
|
|
displayName: 'Test project with sqlite, mysql and postgresql backends'
|