diff options
author | Pablo Barciela <[email protected]> | 2020-04-29 03:39:23 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-29 04:08:00 +0200 |
commit | 50182f3dfcbfbf74c38f3cb834bc61c3ae5f6c53 (patch) | |
tree | 8ac352004e50e01c539b19c778070427ba35dac0 /.build.yml | |
parent | 94f4d471b9a27b2679915af9e91da0f6dfe1fd99 (diff) | |
download | mate-sensors-applet-50182f3dfcbfbf74c38f3cb834bc61c3ae5f6c53.tar.bz2 mate-sensors-applet-50182f3dfcbfbf74c38f3cb834bc61c3ae5f6c53.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
@@ -109,6 +109,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 @@ -116,9 +121,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 |