diff .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
line wrap: on
line diff
--- 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