From 46155e507b184c932eabc61fa9b0f9869c5ece1d Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 5 Oct 2018 18:12:44 +0200 Subject: [PATCH] azure-pipelines.yml: add windows image --- azure-pipelines.yml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ea242cb8..e340126c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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' -- 2.11.0