diff options
author | Pablo Barciela <[email protected]> | 2020-05-25 03:29:46 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2020-05-25 03:43:34 +0200 |
commit | f63046b053add1737020a64fd62bf5e59ea41dda (patch) | |
tree | eee9e459501a44c41740af3560b51cfbf74e1fd1 | |
parent | 8d37c6fbcfa538f20d2c2927719749682f3b215b (diff) | |
download | mate-netbook-f63046b053add1737020a64fd62bf5e59ea41dda.tar.bz2 mate-netbook-f63046b053add1737020a64fd62bf5e59ea41dda.tar.xz |
Travis CI: debian build: add clang compiler
-rw-r--r-- | .build.yml | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -108,8 +108,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 |