summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2020-04-29 03:39:23 +0200
committerPablo Barciela <[email protected]>2020-04-29 04:08:00 +0200
commit50182f3dfcbfbf74c38f3cb834bc61c3ae5f6c53 (patch)
tree8ac352004e50e01c539b19c778070427ba35dac0
parent94f4d471b9a27b2679915af9e91da0f6dfe1fd99 (diff)
downloadmate-sensors-applet-50182f3dfcbfbf74c38f3cb834bc61c3ae5f6c53.tar.bz2
mate-sensors-applet-50182f3dfcbfbf74c38f3cb834bc61c3ae5f6c53.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 0359ddf..b335a45 100644
--- a/.build.yml
+++ b/.build.yml
@@ -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