]> granicus.if.org Git - libevent/commitdiff
travis-ci: do not run coveralls with clang (SIGSEGV)
authorAzat Khuzhin <azat@libevent.org>
Wed, 5 Dec 2018 08:40:40 +0000 (11:40 +0300)
committerAzat Khuzhin <azat@libevent.org>
Wed, 5 Dec 2018 08:48:03 +0000 (11:48 +0300)
This will fix coveralls badge

See: https://travis-ci.org/libevent/libevent/jobs/458590276#L1425

.travis.yml

index 7451995a50976b50a363be435a84176bcfc662de..a25b78ffe05bea60b94975cb36421870bde842ed 100644 (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