From 6230430efaf19e3325adb353508b0502c7852c7d Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Mon, 20 Apr 2020 02:07:34 +0200 Subject: Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS --- .build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.build.yml b/.build.yml index 579946e..7f3e601 100644 --- a/.build.yml +++ b/.build.yml @@ -118,6 +118,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 --prefix=/usr --enable-gtk-doc --enable-compile-warnings=maximum - if [ $CPU_COUNT -gt 1 ]; then @@ -125,9 +130,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 [ ${BUILD_TYPE} == "scripts" ];then -- cgit v1.2.1