summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2020-04-14 00:24:27 +0200
committerPablo Barciela <[email protected]>2020-04-14 00:50:23 +0200
commitaf9872f44ddd07636ad23fb833dc0fab41d77e30 (patch)
treed7b5f132f3a36d53f605ed9cf7247c3241681671
parent8ce1b5483f4f864717ed3a17afe6325d43cbfc87 (diff)
downloadeom-af9872f44ddd07636ad23fb833dc0fab41d77e30.tar.bz2
eom-af9872f44ddd07636ad23fb833dc0fab41d77e30.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 243684c..9c8ccc9 100644
--- a/.build.yml
+++ b/.build.yml
@@ -148,6 +148,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 --enable-compile-warnings=maximum
- scan-build $CHECKERS ./configure --enable-compile-warnings=maximum
- if [ $CPU_COUNT -gt 1 ]; then
@@ -155,9 +160,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