Browse Source

travis.yml: use --enable-werror on debug builds

... to better detect and fault on compiler warnings/errors

Closes #1637
Daniel Stenberg 7 years ago
parent
commit
fc2e81c38b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

+ 1 - 1
.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