diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-07-04 10:27:12 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-07-04 10:27:36 +0200 |
commit | fc2e81c38b19ebe9651cda28a2395a0244125f52 (patch) | |
tree | 9dacde5261428b431287b2a98deab0d8dca2a955 /.travis.yml | |
parent | c1d1a3448fccfee4242b14d8668a2e73752e321a (diff) | |
download | curl-fc2e81c38b19ebe9651cda28a2395a0244125f52.tar.gz |
travis.yml: use --enable-werror on debug builds
... to better detect and fault on compiler warnings/errors
Closes #1637
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 852ac55b6..8a89072b5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -63,7 +63,7 @@ script: fi - | if [ "$BUILD_TYPE" = "debug" ]; then - ./configure --enable-debug + ./configure --enable-debug --enable-werror make make TFLAGS=-n test-nonflaky fi |