changeset 10508:338bab9e417a

commit https://github.com/vim/vim/commit/14a612fa2e5705547d0687ac07abc200c9359125 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 6 16:35:04 2017 +0100 Better solution to make coveralls work again.
author Christian Brabandt <cb@256bit.org>
date Fri, 06 Jan 2017 16:45:04 +0100
parents 4414d4267cc2
children 9897e7a5c648
files .travis.yml
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.travis.yml
+++ b/.travis.yml
@@ -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