From ebe155879e9e057714a923628b9ab52bdcfff103 Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Thu, 11 Oct 2012 15:51:47 -0700 Subject: [PATCH] Update .travis.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I re-enabled Rubinius and set `allow_failures` per the docs here http://about.travis-ci.org/docs/user/build-configuration/. Hopefully I did that correctly. It seems that allowing failures would be better than adding and removing Rubinius. That way, when it fails, it's easy to point us to a failure. --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 9c38f8c1..67e6504c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,11 @@ language: ruby rvm: - 1.9.3 + - rbx-19mode before_script: - 'RAILS_ENV=test rake db:create db:schema:load --trace' notifications: irc: "irc.freenode.org#travis" +matrix: + allow_failures: + - rvm: rbx-19mode