diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-27 21:29:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-27 21:29:31 +0200 |
commit | cb25d1822094f2bc243cc2f64daf2e3b55f1d31b (patch) | |
tree | a4487c0795ff07f9a9399ec96e294ce84613c281 /.travis.yml | |
parent | 293424c199615b774365db9b412209b102cdfe20 (diff) | |
download | vim-git-cb25d1822094f2bc243cc2f64daf2e3b55f1d31b.tar.gz |
patch 8.0.0780: build failure on Travisv8.0.0780
Problem: Build failure on Travis.
Solution: Set distribution explicitly. Use Lua and Ruby dev. (Ken Takata,
closes #1884)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index a0b8d2140..333f6b444 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: c +dist: trusty os: - osx @@ -70,11 +71,13 @@ addons: - libperl-dev - python-dev - python3-dev - - liblua5.1-0-dev - - lua5.1 + - liblua5.2-dev + - lua5.2 + - ruby-dev - cscope before_install: + - rvm reset - if [ "$COVERAGE" = "yes" ]; then pip install --user cpp-coveralls; fi # needed for https support for coveralls # building cffi only works with gcc, not with clang |