diff options
author | Pablo Barciela <[email protected]> | 2020-04-20 02:24:41 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-04-20 02:48:40 +0200 |
commit | c4c5242e582775ec8ab0902ab019d6ed65a26c46 (patch) | |
tree | 44369141a9a8f53f782d0691802ba78eaf5f9d11 | |
parent | 88fde3d6da063f8c354f46a66fbebc1ed97f5069 (diff) | |
download | mate-indicator-applet-c4c5242e582775ec8ab0902ab019d6ed65a26c46.tar.bz2 mate-indicator-applet-c4c5242e582775ec8ab0902ab019d6ed65a26c46.tar.xz |
Travis CI: debian build: add clang compiler
-rw-r--r-- | .build.yml | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -105,8 +105,16 @@ build_scripts: - NOCONFIGURE=1 ./autogen.sh - scan-build $CHECKERS ./configure --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 |