diff options
author | Pablo Barciela <[email protected]> | 2020-04-11 04:02:30 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-11 23:35:11 +0200 |
commit | e91ae3cb394ff3f1df53ef88603b65012a590c06 (patch) | |
tree | be8377451a0e39032577d3a45ba2b1577db95b1b /.build.yml | |
parent | 0778e4505d548d4b5c025b2e17581b96b78c96d7 (diff) | |
download | atril-e91ae3cb394ff3f1df53ef88603b65012a590c06.tar.bz2 atril-e91ae3cb394ff3f1df53ef88603b65012a590c06.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
@@ -150,6 +150,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 --force -D__cplusplus . + - fi + - ./autogen.sh - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum --enable-cxx-warnings=maximum - if [ $CPU_COUNT -gt 1 ]; then @@ -157,9 +163,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__cplusplus . - - fi after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then |