From e91ae3cb394ff3f1df53ef88603b65012a590c06 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Sat, 11 Apr 2020 04:02:30 +0200 Subject: Travis CI: debian build: add more CFLAGS and CXXFLAGS --- .build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.build.yml b/.build.yml index 252c92ce..75ec6880 100644 --- a/.build.yml +++ b/.build.yml @@ -150,6 +150,12 @@ before_scripts: - make install build_scripts: + - if [ ${DISTRO_NAME} == "debian" ];then + - export CFLAGS+=" -Wsign-compare -Wunused-parameter" + - export CXXFLAGS+=" -Wsign-compare -Wunused" + - cppcheck --enable=warning,style,performance,portability,information,missingInclude --force -D__cplusplus . + - fi + - ./autogen.sh - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum --enable-cxx-warnings=maximum - if [ $CPU_COUNT -gt 1 ]; then @@ -157,9 +163,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 --force -D__cplusplus . - - fi after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then -- cgit v1.2.1