aboutsummaryrefslogtreecommitdiff
path: root/.azure-pipelines.yml
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-12-10 12:47:30 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-12-13 13:01:32 +0100
commit1fb2a487520346ee343733e03698ddfb6133fa24 (patch)
tree6e22fc4df1448eb4f05240dcf301a7fe281c4895 /.azure-pipelines.yml
parent68ffe6c17d6e44b459d60805813f646d244a186b (diff)
azure: make the default build use --enable-debug --enable-werror
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r--.azure-pipelines.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index efe1d5742..507e24a9f 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -6,13 +6,17 @@
trigger:
- master
+##########################################
+### Linux jobs first
+##########################################
+
jobs:
- job: vanilla_ubuntu
displayName: unbuntu default
pool:
vmImage: 'ubuntu-latest'
steps:
- - script: ./buildconf && ./configure
+ - script: ./buildconf && ./configure --enable-debug --enable-werror
displayName: 'Run configure'
- script: make