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)
This commit is contained in:
Azat Khuzhin 2018-12-05 11:40:40 +03:00
parent 260db3410a
commit 412be74a86
No known key found for this signature in database
GPG Key ID: B86086848EF8686D

View File

@ -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