summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2020-04-16 02:15:10 +0200
committerPablo Barciela <[email protected]>2020-04-16 03:16:10 +0200
commit2f62a468a6e7813a843f6951f19e33c9f0eb08ca (patch)
tree5450cd2a6322ebf521f4f064e14b1f09858da856
parent17bda78e875c9e73711e044ca0a9e8adce24bbb8 (diff)
downloadmate-settings-daemon-2f62a468a6e7813a843f6951f19e33c9f0eb08ca.tar.bz2
mate-settings-daemon-2f62a468a6e7813a843f6951f19e33c9f0eb08ca.tar.xz
Travis CI: debian build: add clang compiler
-rw-r--r--.build.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml
index eb55d51..1694ffc 100644
--- a/.build.yml
+++ b/.build.yml
@@ -174,8 +174,16 @@ build_scripts:
- ./autogen.sh
- scan-build $CHECKERS ./configure --prefix=/usr --enable-pulse --enable-compile-warnings=maximum
- if [ $CPU_COUNT -gt 1 ]; then
+ - if [ ${DISTRO_NAME} == "debian" ];then
+ - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make -j $CPU_COUNT
+ - make clean
+ - fi
- scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT
- else
+ - if [ ${DISTRO_NAME} == "debian" ];then
+ - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make
+ - make clean
+ - fi
- scan-build $CHECKERS --keep-cc -o html-report make
- fi