From 6f33badc4cf043d3205783eb839e748c4bae0285 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 5 Oct 2018 23:25:15 +0200 Subject: [PATCH] azure-pipelines.yml: also -Werror on mac and linux --- azure-pipelines.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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 -- 2.11.0