vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 980a3e45dbb4234eb0724411a227e370049d7f14
parent 5794969f5bfdf52fa1f8c098579d71cc87682f44
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Fri, 22 Feb 2019 15:51:30 +0100

Set up CI with Azure Pipelines
Diffstat:
Aazure-pipelines.yml | 17+++++++++++++++++
1 file changed, 17 insertions(+), 0 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -0,0 +1,17 @@ +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: | + rustc -Vv + cargo -V + displayName: Query rust and cargo versions + +- script : cargo build --verbose --all-features + displayName: 'Build project'