diff options
author | Pablo Barciela <[email protected]> | 2020-04-18 03:22:33 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-18 04:39:10 +0200 |
commit | 4261e2cc39e8091fb89de51d09330c6d913f072a (patch) | |
tree | c3052585d3b75d1f4a755058dd0ad49ebea95977 /.build.yml | |
parent | c5e3f678c115031191c60bce84e886ae4ed7d727 (diff) | |
download | marco-4261e2cc39e8091fb89de51d09330c6d913f072a.tar.bz2 marco-4261e2cc39e8091fb89de51d09330c6d913f072a.tar.xz |
Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -150,6 +150,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 --force -D'PACKAGE' -D'WITH_VERBOSE_MODE' . + - fi + - ./autogen.sh --enable-compile-warnings=maximum - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum - if [ $CPU_COUNT -gt 1 ]; then @@ -157,9 +162,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'PACKAGE' -D'WITH_VERBOSE_MODE' . - - fi after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then |