diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-12-10 12:47:30 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-12-13 13:01:32 +0100 |
commit | 1fb2a487520346ee343733e03698ddfb6133fa24 (patch) | |
tree | 6e22fc4df1448eb4f05240dcf301a7fe281c4895 /.azure-pipelines.yml | |
parent | 68ffe6c17d6e44b459d60805813f646d244a186b (diff) | |
download | curl-1fb2a487520346ee343733e03698ddfb6133fa24.tar.gz |
azure: make the default build use --enable-debug --enable-werror
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 6 |
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 |