diff options
author | Pablo Barciela <[email protected]> | 2020-04-21 03:12:54 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-21 03:28:06 +0200 |
commit | 09ecc4a6076edc3203ec4d0ba3bccaea052762b0 (patch) | |
tree | 15961c265b36bdfdac8ba5fca868d226092383d0 | |
parent | 7dca88a484aee2f5804ccf2c38f781d588c1dc0b (diff) | |
download | mate-media-09ecc4a6076edc3203ec4d0ba3bccaea052762b0.tar.bz2 mate-media-09ecc4a6076edc3203ec4d0ba3bccaea052762b0.tar.xz |
Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS
-rw-r--r-- | .build.yml | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -104,6 +104,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 + - NOCONFIGURE=1 ./autogen.sh - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum - if [ $CPU_COUNT -gt 1 ]; then @@ -111,9 +116,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 |