From: Daniel Stenberg Date: Tue, 10 Dec 2019 11:47:30 +0000 (+0100) Subject: azure: make the default build use --enable-debug --enable-werror X-Git-Tag: curl-7_68_0~66 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1fb2a487520346ee343733e03698ddfb6133fa24;p=thirdparty%2Fcurl.git azure: make the default build use --enable-debug --enable-werror --- diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index efe1d57424..507e24a9f6 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