diff options
author | Pablo Barciela <[email protected]> | 2020-04-17 00:07:48 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-17 00:29:44 +0200 |
commit | 39406ae2c742b4ebae0704c27290a545ff84d082 (patch) | |
tree | 5438223dca678df13ed9b4515c525ba9ce878fa2 | |
parent | cb17f40ba539c5a4be834a68589059d5be8e2683 (diff) | |
download | libmatemixer-39406ae2c742b4ebae0704c27290a545ff84d082.tar.bz2 libmatemixer-39406ae2c742b4ebae0704c27290a545ff84d082.tar.xz |
Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS
-rw-r--r-- | .build.yml | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -90,6 +90,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 + - ./autogen.sh --enable-compile-warnings=maximum - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum - if [ $CPU_COUNT -gt 1 ]; then @@ -97,9 +102,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 [ ${DISTRO_NAME} == "fedora" ];then @@ -121,4 +123,3 @@ releases: base_version: 1.20.0 notify_servers: - https://release.mate-desktop.org/release - |