From: Marc Hoersken Date: Tue, 21 Jul 2020 17:04:42 +0000 (+0200) Subject: CI/azure: unconditionally enable warnings-as-errors with autotools X-Git-Tag: curl-7_72_0~91 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3cd9bc9689f8ddee23735cd1fbe90ce5c139ad02;p=thirdparty%2Fcurl.git CI/azure: unconditionally enable warnings-as-errors with autotools Reviewed-by: Marcel Raad Follow up to #5694 Closes #5706 --- diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 91451198fa..bb9efa7958 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -57,7 +57,7 @@ stages: matrix: default: name: default - configure: --enable-debug --enable-werror + configure: --enable-debug disable_ipv6: name: w/o IPv6 configure: --disable-ipv6 @@ -79,7 +79,7 @@ stages: - script: sudo apt-get update && sudo apt-get install -y stunnel4 python-impacket libzstd-dev libbrotli-dev $(install) displayName: 'apt install' - - script: ./buildconf && ./configure $(configure) + - script: ./buildconf && ./configure --enable-warnings --enable-werror $(configure) displayName: 'configure $(name)' - script: make