]> granicus.if.org Git - zziplib/commitdiff
Set up CI with Azure Pipelines
authorGuido U. Draheim <guidod@gmx.de>
Sun, 26 May 2019 08:33:52 +0000 (10:33 +0200)
committerGuido U. Draheim <guidod@gmx.de>
Sun, 26 May 2019 08:33:52 +0000 (10:33 +0200)
configure && cd build && make [skip ci]

azure-pipelines.yml [new file with mode: 0644]

diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644 (file)
index 0000000..cf5f36e
--- /dev/null
@@ -0,0 +1,15 @@
+# C/C++ with GCC
+# Build your C/C++ project with GCC using make.
+# Add steps that publish test results, save build artifacts, deploy, and more:
+# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc
+
+trigger:
+- master
+
+pool:
+  vmImage: 'ubuntu-latest'
+
+steps:
+- script: |
+    configure && cd build && make
+  displayName: 'make'