ref: 6f33badc4cf043d3205783eb839e748c4bae0285
parent: 96c97d0c451a2ca0b8e0658745de27aea7949fd7
author: Paul Brossier <piem@piem.org>
date: Fri Oct 5 19:25:15 EDT 2018
azure-pipelines.yml: also -Werror on mac and linux
--- 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 @@
- job: macos
pool:
vmIMage: macOS-10.13
-
steps:
- script: |
brew update
@@ -33,3 +34,5 @@
- script: |
make
displayName: 'make'
+ env:
+ CFLAGS: -Werror