]> granicus.if.org Git - zziplib/commitdiff
azure cmake
authorGuido Draheim <guidod@gmx.de>
Sun, 26 May 2019 09:02:03 +0000 (11:02 +0200)
committerGuido Draheim <guidod@gmx.de>
Sun, 26 May 2019 09:02:03 +0000 (11:02 +0200)
azure-pipelines.yml

index c854559e44e64ce813dac29fad6ff5f8104022e2..e0d96798b326b9dd692f43a645c7ac31fef4a66f 100644 (file)
@@ -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'