diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-28 18:01:58 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-28 18:01:58 +0200 |
commit | d973bcb483088b69eb1aed3788476662fe6b77ef (patch) | |
tree | 79c94d5bc1a799104aa4f0dcb6e22bd2a2bcea9c /.travis.yml | |
parent | 607985a95f31f4db238c7d825e548b14da64ac26 (diff) | |
download | vim-git-d973bcb483088b69eb1aed3788476662fe6b77ef.tar.gz |
patch 8.0.0796: no coverage on Travis with clangv8.0.0796
Problem: No coverage on Travis with clang.
Solution: Use a specific coveralls version. (Ozaki Kiichi, closes #1888)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index a6db9e7f6..17f041807 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,6 @@ sudo: false # instead of a 2*2*8 matrix (2*os + 2*compiler + 8*env), # exclude some builds on mac os x and linux # linux: 2*compiler + 5*env + mac: 2*compiler + 2*env -# Note: coverage currently does not work with clang, "setup.py install for cryptography" fails matrix: exclude: - os: osx @@ -53,10 +52,6 @@ matrix: "CONFOPT='--enable-perlinterp --enable-pythoninterp --enable-rubyinterp --enable-luainterp'" - os: linux compiler: clang - env: BUILD=yes TEST=scripttests COVERAGE=yes CFLAGS=--coverage LDFLAGS=--coverage FEATURES=huge SHADOWOPT= SRCDIR=./src CHECK_AUTOCONF=no - "CONFOPT='--enable-perlinterp --enable-pythoninterp --enable-python3interp --enable-rubyinterp --enable-luainterp'" - - os: linux - compiler: clang env: BUILD=no TEST=unittests COVERAGE=yes CFLAGS=--coverage LDFLAGS=--coverage FEATURES=huge SHADOWOPT= SRCDIR=./src CHECK_AUTOCONF=yes - os: linux compiler: clang @@ -82,7 +77,7 @@ addons: - cscope before_install: - - if [ "$COVERAGE" = "yes" ]; then pip install --user cpp-coveralls; fi + - if [ "$COVERAGE" = "yes" ]; then pip install --user cpp-coveralls==0.3.12; fi # needed for https support for coveralls # building cffi only works with gcc, not with clang - if [ "$COVERAGE" = "yes" ]; then CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1; fi |