diff options
author | Pablo Barciela <[email protected]> | 2020-04-24 00:26:49 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-24 01:33:20 +0200 |
commit | d2d9c92e5c099f2aaa7c2ad51029c21b6c9c6f54 (patch) | |
tree | 9db60c4f34b39ca7af66fec528b3e261330a3a81 /.build.yml | |
parent | 122217d130c4fb4649718d1c533b3818fefc88a2 (diff) | |
download | mate-panel-d2d9c92e5c099f2aaa7c2ad51029c21b6c9c6f54.tar.bz2 mate-panel-d2d9c92e5c099f2aaa7c2ad51029c21b6c9c6f54.tar.xz |
Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -156,6 +156,11 @@ before_scripts: - ninja -C _build install build_scripts: + - if [ ${DISTRO_NAME} == "debian" ];then + - export CFLAGS+=" -Wsign-compare -Wunused-parameter" + - cppcheck --enable=warning,style,performance,portability,information,missingInclude -i'gtk-layer-shell-build' . + - fi + - NOCONFIGURE=1 ./autogen.sh - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum - if [ $CPU_COUNT -gt 1 ]; then @@ -163,13 +168,10 @@ 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 -i'mate-menus-build' -i'gtk-layer-shell-build' . - - fi after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then - - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude -i'mate-menus-build' -i'gtk-layer-shell-build' . + - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude -i'gtk-layer-shell-build' . - cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport - ./gen-index -l 20 -i https://raw.githubusercontent.com/${OWNER_NAME}/${REPO_NAME}/master/icons/16x16/${REPO_NAME}.png - fi |