From: Paul Brossier Date: Fri, 5 Oct 2018 16:12:44 +0000 (+0200) Subject: azure-pipelines.yml: add windows image X-Git-Tag: 0.4.8~92^2~20^2~6 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=46155e507b184c932eabc61fa9b0f9869c5ece1d;p=aubio.git azure-pipelines.yml: add windows image --- 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'