summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2020-04-14 23:13:37 +0200
committerPablo Barciela <[email protected]>2020-04-15 00:19:04 +0200
commit149c2d5d499189b399f6e857e74b8c861761a1c9 (patch)
treea3afd327360014f64c052df395fd4a5b94c48ba3
parent1a97a591071cff4ae37827ab0528ee4ef0da2d68 (diff)
downloadmate-system-monitor-149c2d5d499189b399f6e857e74b8c861761a1c9.tar.bz2
mate-system-monitor-149c2d5d499189b399f6e857e74b8c861761a1c9.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 59bc37f..2b959e6 100644
--- a/.build.yml
+++ b/.build.yml
@@ -133,8 +133,16 @@ build_scripts:
- ./autogen.sh
- scan-build $CHECKERS ./configure --enable-compile-warnings=maximum --enable-cxx-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