summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorDirk Lemstra <dirk@git.imagemagick.org>2018-09-17 19:39:00 +0200
committerDirk Lemstra <dirk@git.imagemagick.org>2018-09-17 19:39:00 +0200
commit00ab86b872e81b4c183bad35d2d8d044667c8c3c (patch)
treead35ab70516cc9e47503d23ca5c925b71c907871 /azure-pipelines.yml
parent929d60af07ace50e2cb9a56e3d22c8dac6ed9358 (diff)
downloadImageMagick-00ab86b872e81b4c183bad35d2d8d044667c8c3c.tar.gz
Start of using Azure DevOps Pipelines.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 000000000..c05e1d040
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,18 @@
+name: $(Date:yyyyMMdd.HHmm)
+
+jobs:
+- job: CheckTests
+ pool:
+ vmImage: Ubuntu 16.04
+ steps:
+ - bash: ./check-tests.sh
+ workingDirectory: build
+ displayName: 'Check if tests should run'
+ name: checkTests
+- job: MagickNET
+ dependsOn: CheckTests
+ condition: and(succeeded(), eq(dependencies.CheckTests.outputs['checkTests.RunTests'], 'true'))
+ pool:
+ vmImage: Ubuntu 16.04
+ steps:
+ - template: build/test-magick-net.yml \ No newline at end of file