From c1ef5fc2bf7a29ec6212209238368f1c574b9878 Mon Sep 17 00:00:00 2001 From: Karl Freeman Date: Tue, 25 Mar 2014 08:35:33 +0000 Subject: [PATCH] refresh travis - indicate that we're keen on caching - test against a larger variety of ruby interpreters however, lets allow some failures - not allow 2.1 to fail? --- .travis.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 520228b1..72b2e475 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,24 @@ language: ruby +cache: bundler +env: TEST=true bundler_args: --without development +before_install: git submodule update --init --recursive rvm: - ruby-head + - ruby + - jruby-head + - jruby + - jruby-19mode - 2.1.0 - 2.0.0 - 1.9.3 - - jruby-19mode + - rbx-2 matrix: fast_finish: true allow_failures: - rvm: ruby-head - - rvm: 2.1.0 + - rvm: ruby + - rvm: jruby-head + - rvm: jruby - rvm: jruby-19mode -env: TEST=true -before_install: git submodule update --init --recursive -script: bundle exec rake test \ No newline at end of file + - rvm: rbx-2 \ No newline at end of file