diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2020-07-21 19:04:42 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2020-07-22 20:08:23 +0200 |
commit | 3cd9bc9689f8ddee23735cd1fbe90ce5c139ad02 (patch) | |
tree | 4d7f205aa54df90ff022b783e0567552d253ade5 /.azure-pipelines.yml | |
parent | d746ff11073b5bbf8fff33b2eb7fe110ddf9fee8 (diff) | |
download | curl-3cd9bc9689f8ddee23735cd1fbe90ce5c139ad02.tar.gz |
CI/azure: unconditionally enable warnings-as-errors with autotools
Reviewed-by: Marcel Raad
Follow up to #5694
Closes #5706
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 91451198f..bb9efa795 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 |