From 82548dfc23d4abff5c6469adaea5104d9d3c8a90 Mon Sep 17 00:00:00 2001 From: Robert Haines Date: Tue, 30 Dec 2014 13:02:17 +0000 Subject: [PATCH] Workaround for Travis/RVM JRuby issue. Specify a version for JRuby as per: https://github.com/travis-ci/travis-ci/issues/3067 Using version 1.7.18 would require uninstalling and reinstalling JRuby (see thread above) which would be done for every entry in the build matrix, even the non-JRuby ones. So use 1.7.17 for now. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c7ee7768..450349b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,9 +10,9 @@ rvm: - rbx-2 matrix: include: - - rvm: jruby-19mode + - rvm: jruby-1.7.17-19mode jdk: oraclejdk7 - - rvm: jruby-19mode + - rvm: jruby-1.7.17-19mode jdk: openjdk7 allow_failures: - rvm: ruby-head