summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2020-04-09 04:36:20 +0200
committerPablo Barciela <[email protected]>2020-04-09 04:36:20 +0200
commitea2c6735e3c8a5e5a91e5472123eeaee70716478 (patch)
tree86d67b47cbc4af4e3838df89ebb558097ecc9205
parent02b397fcee45404e01cbf529810a60ac96370d66 (diff)
downloadmate-applets-ea2c6735e3c8a5e5a91e5472123eeaee70716478.tar.bz2
mate-applets-ea2c6735e3c8a5e5a91e5472123eeaee70716478.tar.xz
Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS
-rw-r--r--.build.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.build.yml b/.build.yml
index 8da34c28..7da41c0b 100644
--- a/.build.yml
+++ b/.build.yml
@@ -143,6 +143,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
@@ -150,9 +155,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