diff options
author | Pablo Barciela <[email protected]> | 2020-04-20 02:07:34 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-20 02:29:18 +0200 |
commit | 6230430efaf19e3325adb353508b0502c7852c7d (patch) | |
tree | 18499871c489ca0b8f1c8cdbeaaea51005bd4238 | |
parent | bc0596b1b518c6ab00a98fcc4d19ff3ae864d4cf (diff) | |
download | mate-desktop-6230430efaf19e3325adb353508b0502c7852c7d.tar.bz2 mate-desktop-6230430efaf19e3325adb353508b0502c7852c7d.tar.xz |
Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS
-rw-r--r-- | .build.yml | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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 |