diff options
author | Pablo Barciela <[email protected]> | 2020-04-14 23:12:05 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-15 00:19:04 +0200 |
commit | 1a97a591071cff4ae37827ab0528ee4ef0da2d68 (patch) | |
tree | 596e5c6f4a3188aef89d0ecc49466b5b7c4cd914 /.build.yml | |
parent | aad18bfb90821dd3a97d493bdf4297e7f80d5ccf (diff) | |
download | mate-system-monitor-1a97a591071cff4ae37827ab0528ee4ef0da2d68.tar.bz2 mate-system-monitor-1a97a591071cff4ae37827ab0528ee4ef0da2d68.tar.xz |
Travis CI: debian build: add more CFLAGS and CXXFLAGS
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -124,6 +124,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 . + - fi + - ./autogen.sh - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum --enable-cxx-warnings=maximum - if [ $CPU_COUNT -gt 1 ]; then @@ -131,9 +137,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 |