From dc72ea956dc0385ee54f65600a0010c3271956cc Mon Sep 17 00:00:00 2001 From: Guido Draheim Date: Sun, 26 May 2019 11:02:03 +0200 Subject: [PATCH] azure cmake --- azure-pipelines.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c854559..e0d9679 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,11 +11,15 @@ pool: steps: - script: | - cmake + rm -rf build + mkdir build + displayName: 'build dir' +- script: | + cd build && cmake .. displayName: 'configure' - script: | - make all + cd build && make all displayName: 'make all' - script: | - make check + cd build && make check displayName: 'make check' -- 2.40.0