summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2020-06-12 01:56:22 +0200
committerPablo Barciela <[email protected]>2020-06-12 02:35:57 +0200
commit823111b98bee284e383154aa0eaafe0a875fd859 (patch)
treea77e2cc7866e133913fffc456f1e8f4f29715ce8
parentfb98ccf84e8f81cd15ede1b897096877a3f787a9 (diff)
downloadmate-user-share-823111b98bee284e383154aa0eaafe0a875fd859.tar.bz2
mate-user-share-823111b98bee284e383154aa0eaafe0a875fd859.tar.xz
Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS
-rw-r--r--.build.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.build.yml b/.build.yml
index c021eb9..6ba266d 100644
--- a/.build.yml
+++ b/.build.yml
@@ -125,6 +125,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 --enable-compile-warnings=maximum
- if [ $CPU_COUNT -gt 1 ]; then
@@ -132,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