0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

Better solution to make coveralls work again.

This commit is contained in:
Bram Moolenaar 2017-01-06 16:35:04 +01:00
parent 7034a83743
commit 14a612fa2e

View File

@ -66,8 +66,9 @@ addons:
before_install:
- pip install --user cpp-coveralls
# needed for https support for coveralls
# building cffi only works sith gcc, not with clang
- if [ "$CC" = "gcc" ]; then pip install --user pyopenssl ndg-httpsclient pyasn1; fi
- CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1
# Lua is not installed on Travis OSX
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi