comparison .travis.yml @ 10509:9897e7a5c648

commit https://github.com/vim/vim/commit/aaeabfbca571e24a29925dacf104e21dc251a771 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 6 16:47:24 2017 +0100 Only install coveralls when used.
author Christian Brabandt <cb@256bit.org>
date Fri, 06 Jan 2017 17:00:04 +0100
parents 338bab9e417a
children a028413f6a26
comparison
equal deleted inserted replaced
10508:338bab9e417a 10509:9897e7a5c648
63 - liblua5.1-0-dev 63 - liblua5.1-0-dev
64 - lua5.1 64 - lua5.1
65 - cscope 65 - cscope
66 66
67 before_install: 67 before_install:
68 - pip install --user cpp-coveralls 68 - if [ "$COVERAGE" = "yes" ]; then pip install --user cpp-coveralls; fi
69 # needed for https support for coveralls 69 # needed for https support for coveralls
70 # building cffi only works sith gcc, not with clang 70 # building cffi only works with gcc, not with clang
71 - CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1 71 - if [ "$COVERAGE" = "yes" ]; then CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1; fi
72 # Lua is not installed on Travis OSX 72 # Lua is not installed on Travis OSX
73 - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi 73 - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lua; export LUA_PREFIX=/usr/local; fi
74 74
75 # Start virtual framebuffer to be able to test the GUI. Does not work on OS X. 75 # Start virtual framebuffer to be able to test the GUI. Does not work on OS X.
76 before_script: 76 before_script: