From eb830e8b0d9b9fb6deb590e6763d30ee4446ebc1 Mon Sep 17 00:00:00 2001 From: Randy Coulman Date: Fri, 8 Apr 2016 08:12:30 -0700 Subject: [PATCH] Allow CI failures on JRuby (for now) * This is a temporary measure until I can make time to resolve the compatibility issues with JRuby. * On jruby-9, the issue seems to be the exit code returned by the script when running the acceptance tests. Everything seems to work fine otherwise. * On jruby-head, Travis doesn't seem to have the bundler gem installed. --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 167756f..c441ea2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,8 @@ rvm: - jruby-9 - jruby-head - rbx-2 +matrix: + allow_failures: + - jruby-9 + - jruby-head script: "bundle exec rake"