azure-pipelines.yml: add windows image
authorPaul Brossier <piem@piem.org>
Fri, 5 Oct 2018 16:12:44 +0000 (18:12 +0200)
committerPaul Brossier <piem@piem.org>
Fri, 5 Oct 2018 16:12:44 +0000 (18:12 +0200)
azure-pipelines.yml

index ea242cb..e340126 100644 (file)
@@ -1,8 +1,18 @@
 #  configuration file for azure continuous integration
-pool:
-  vmImage: 'Ubuntu 16.04'
+jobs:
+- job: linux
+  pool:
+    vmImage: 'Ubuntu 16.04'
 
-steps:
-- script: |
-    make
-  displayName: 'make'
+  steps:
+  - script: |
+      make
+    displayName: 'make'
+- job: windows
+  pool:
+    vmIMage: 'VS2017-Win2016'
+
+  steps:
+  - script: |
+      make
+    displayName: 'make'