diff options
author | Pablo Barciela <[email protected]> | 2020-04-25 03:41:51 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-25 04:03:45 +0200 |
commit | 93407b893d348b6557d1e750b2f378fb1e67bb24 (patch) | |
tree | 2fb22c8eb2acdf52430c61dc8b8a8c614bab591e | |
parent | b91ecf5b9e2b02860c24c14f79257b725bd48ca7 (diff) | |
download | mate-terminal-93407b893d348b6557d1e750b2f378fb1e67bb24.tar.bz2 mate-terminal-93407b893d348b6557d1e750b2f378fb1e67bb24.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
@@ -107,6 +107,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 @@ -114,9 +119,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 |