From: Azat Khuzhin Date: Wed, 5 Dec 2018 08:40:40 +0000 (+0300) Subject: travis-ci: do not run coveralls with clang (SIGSEGV) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e6bec7c1aa416e3e6e85c7bda1bdc98b778d23c;p=libevent travis-ci: do not run coveralls with clang (SIGSEGV) This will fix coveralls badge See: https://travis-ci.org/libevent/libevent/jobs/458590276#L1425 --- diff --git a/.travis.yml b/.travis.yml index 7451995a..a25b78ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,6 +39,10 @@ compiler: - clang before_install: + # do not run with clang, since it fails (SIGSEGV) + - if [ "$CC" = "clang" ]; then + unset COVERALLS; + fi - if [ -n "$COVERALLS" ]; then pip install --user cpp-coveralls; fi