diff options
author | Pablo Barciela <[email protected]> | 2020-04-17 00:12:14 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-17 00:35:55 +0200 |
commit | b20de40bd9511a88c74c34a786f20e8ffb18903a (patch) | |
tree | a64f5675892b026e64a1d122d8e81d164ec2376c /.build.yml | |
parent | b4e3b677e6702b87c90a26ad03e50770ac095b69 (diff) | |
download | libmateweather-b20de40bd9511a88c74c34a786f20e8ffb18903a.tar.bz2 libmateweather-b20de40bd9511a88c74c34a786f20e8ffb18903a.tar.xz |
Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -101,6 +101,11 @@ before_scripts: - make install build_scripts: + - if [ ${DISTRO_NAME} == "debian" ];then + - export CFLAGS+=" -Wsign-compare -Wunused-parameter" + - cppcheck --enable=warning,style,performance,portability,information,missingInclude . + - fi + - ./autogen.sh - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum - if [ $CPU_COUNT -gt 1 ]; then @@ -108,9 +113,6 @@ build_scripts: - else - scan-build $CHECKERS --keep-cc -o html-report make - fi - - if [ ${DISTRO_NAME} == "debian" ];then - - cppcheck --enable=warning,style,performance,portability,information,missingInclude . - - fi after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then |