From: Paul Brossier Date: Fri, 5 Oct 2018 21:25:15 +0000 (+0200) Subject: azure-pipelines.yml: also -Werror on mac and linux X-Git-Tag: 0.4.8~92^2~15^2^2 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=6f33badc4cf043d3205783eb839e748c4bae0285;p=aubio.git azure-pipelines.yml: also -Werror on mac and linux --- diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 06c30aac..f70090d8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,17 +1,19 @@ # configuration file for azure continuous integration jobs: + - job: linux pool: vmImage: 'Ubuntu 16.04' - steps: - script: | make displayName: 'make' + env: + CFLAGS: -Werror + - job: windows pool: vmIMage: 'VS2017-Win2016' - steps: - script: | make @@ -23,7 +25,6 @@ jobs: - job: macos pool: vmIMage: macOS-10.13 - steps: - script: | brew update @@ -33,3 +34,5 @@ jobs: - script: | make displayName: 'make' + env: + CFLAGS: -Werror