summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2020-05-07 14:33:20 +0200
committerPablo Barciela <[email protected]>2020-05-08 02:10:21 +0200
commitbf0ff2233406b73d091e0e06edede62987fe52b5 (patch)
treea4743778e8f1651e32c94fd10440baa8ba57498d
parentcea00d6e4bcfeb6cc8a90bcc9478caf5fef2755d (diff)
downloadmate-polkit-bf0ff2233406b73d091e0e06edede62987fe52b5.tar.bz2
mate-polkit-bf0ff2233406b73d091e0e06edede62987fe52b5.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 8108dd9..00444eb 100644
--- a/.build.yml
+++ b/.build.yml
@@ -93,6 +93,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
@@ -100,9 +105,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