From edc26cb1e16009426429cb4585e03af10eb579db Mon Sep 17 00:00:00 2001 From: Nils Domrose Date: Mon, 27 May 2019 00:19:59 +0200 Subject: [PATCH] adapt pipline to no enable conflicting features --- azure-pipelines.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9280f64..2045181 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,7 +10,7 @@ steps: - script: | sudo apt-get update - sudo apt-get install -y libmysql++-dev + sudo apt-get install -y libmariadb-dev displayName: Install libmysql - script: | @@ -18,5 +18,8 @@ steps: cargo -V displayName: Query rust and cargo versions -- script : cargo build --all-features - displayName: 'Build project' +- 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'