Skip to content

Commit

Permalink
'clang' bug on Travis: disabling 'clang' -- there is no way to make i…
Browse files Browse the repository at this point in the history
…t work with gcov.
  • Loading branch information
ezorita committed Jun 14, 2018
1 parent 75a8422 commit bbb127b
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: c

compiler:
- clang
- gcc

branches:
Expand All @@ -11,12 +10,7 @@ branches:
before_install:
- sudo pip install -U cpp-coveralls

install:
# clang 3.4
- if [ "$CC" == "clang" ]; then sudo apt-get install clang-3.4 ggcov; fi
- if [ "$CC" == "clang" ]; then export CC="/usr/bin/clang"; fi

script: $CC --version && make && make lib && python setup.py build && cd test && make test && python python_lib_test.py
script: make && make lib && python setup.py build && cd test && make test && python python_lib_test.py

after_success:
- coveralls --verbose --gcov-options '\-lp' -r .. -E '.*testset' -E '.*faultymalloc'

0 comments on commit bbb127b

Please sign in to comment.