comparison .travis.yml @ 11796:6b172a0a8207 v8.0.0780

patch 8.0.0780: build failure on Travis commit https://github.com/vim/vim/commit/cb25d1822094f2bc243cc2f64daf2e3b55f1d31b Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 27 21:29:31 2017 +0200 patch 8.0.0780: build failure on Travis Problem: Build failure on Travis. Solution: Set distribution explicitly. Use Lua and Ruby dev. (Ken Takata, closes #1884)
author Christian Brabandt <cb@256bit.org>
date Thu, 27 Jul 2017 21:30:04 +0200
parents d9077ce382a8
children 71659235b859
comparison
equal deleted inserted replaced
11795:10ffc9d70c82 11796:6b172a0a8207
1 language: c 1 language: c
2 dist: trusty
2 3
3 os: 4 os:
4 - osx 5 - osx
5 - linux 6 - linux
6 7
68 - autoconf 69 - autoconf
69 - lcov 70 - lcov
70 - libperl-dev 71 - libperl-dev
71 - python-dev 72 - python-dev
72 - python3-dev 73 - python3-dev
73 - liblua5.1-0-dev 74 - liblua5.2-dev
74 - lua5.1 75 - lua5.2
76 - ruby-dev
75 - cscope 77 - cscope
76 78
77 before_install: 79 before_install:
80 - rvm reset
78 - if [ "$COVERAGE" = "yes" ]; then pip install --user cpp-coveralls; fi 81 - if [ "$COVERAGE" = "yes" ]; then pip install --user cpp-coveralls; fi
79 # needed for https support for coveralls 82 # needed for https support for coveralls
80 # building cffi only works with gcc, not with clang 83 # building cffi only works with gcc, not with clang
81 - if [ "$COVERAGE" = "yes" ]; then CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1; fi 84 - if [ "$COVERAGE" = "yes" ]; then CC=gcc pip install --user pyopenssl ndg-httpsclient pyasn1; fi
82 # Lua is not installed on Travis OSX 85 # Lua is not installed on Travis OSX