]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Azure Pipelines: initial CI setup
authorDaniel Stenberg <daniel@haxx.se>
Mon, 2 Dec 2019 14:37:09 +0000 (15:37 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 2 Dec 2019 14:37:09 +0000 (15:37 +0100)
[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..01d0e48
--- /dev/null
@@ -0,0 +1,20 @@
+# Starter pipeline
+# Start with a minimal pipeline that you can customize to build and deploy your code.
+# Add steps that build, run tests, deploy, and more:
+# https://aka.ms/yaml
+
+trigger:
+- master
+
+pool:
+  vmImage: 'ubuntu-latest'
+
+steps:
+- script: ./buildconf && ./configure
+  displayName: 'Run configure'
+
+- script: make
+  displayName: 'make'
+
+- script: test
+  displayName: 'make check'