Explorar el Código

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

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

Closes #1637
Daniel Stenberg hace 7 años
padre
commit
fc2e81c38b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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