Merge pull request #97 from yegorich/travis-warnings

CI: treat gcc warnings as errors
pull/100/head
Marc Kleine-Budde 2018-09-18 11:48:23 +02:00 committed by GitHub
commit 0ff988eeef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -12,13 +12,13 @@ matrix:
os: linux
dist: trusty
compiler: gcc
script: ./autogen.sh && ./configure && make distcheck
script: ./autogen.sh && ./configure CFLAGS="-Werror -Wno-unused-result" && make distcheck
- env: test="x64 5.0 (autotools)"
os: linux
dist: trusty
compiler: clang
script: ./autogen.sh && ./configure && make distcheck
script: ./autogen.sh && ./configure CFLAGS="-Werror -Wno-unused-result" && make distcheck
- env: test="x64 4.8.4 (CMake gcc)"
os: linux