From: Guido Draheim Date: Sun, 26 May 2019 09:02:03 +0000 (+0200) Subject: azure cmake X-Git-Tag: v0.13.72~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc72ea956dc0385ee54f65600a0010c3271956cc;p=zziplib azure cmake --- 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'