From 412be74a86eda7cbf89c0eb1fc6ebad19d386e87 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Wed, 5 Dec 2018 11:40:40 +0300 Subject: [PATCH] travis-ci: do not run coveralls with clang (SIGSEGV) This will fix coveralls badge See: https://travis-ci.org/libevent/libevent/jobs/458590276#L1425 (cherry picked from commit 3e6bec7c1aa416e3e6e85c7bda1bdc98b778d23c) --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) 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