summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-04-02 09:40:00 +0800
committerAndre Arko <andre@arko.net>2014-04-02 09:40:06 +0800
commit6958e5e8663d3b8e05d3269f1e18a5ef48afe1e5 (patch)
tree8630db0c3ae0aad25b77bf8f7eb694b61c69a3be
parenta8aa9ea60599e886ebb0db14aa4e4c86d1be4607 (diff)
downloadbundler-6958e5e8663d3b8e05d3269f1e18a5ef48afe1e5.tar.gz
move allowed failures to build last
-rw-r--r--.travis.yml46
1 files changed, 23 insertions, 23 deletions
diff --git a/.travis.yml b/.travis.yml
index e12c8c424c..88a426d5ec 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -37,30 +37,13 @@ env:
# Test the latest stable branch so we know the next minor will work
- RGV=2.2
matrix:
- allow_failures:
- # We want to know how we're doing with head, but not fail the build
- - rvm: ruby-head
- - env: RGV=master
- # 1.9.2 is simply too slow. it sometimes exceeds the Travis hard limit.
- - rvm: 1.9.2
- # Alternate implementations are good data points but not maintained
- - rvm: jruby
- - rvm: rbx
include:
- # Riding the edge
- - rvm: ruby-head
- env: RGV=master
- # Alternate implementations
- - rvm: jruby
- env: RGV=v2.2.2
- - rvm: rbx
- env: RGV=v2.2.2
- # Rubygems goes down to 2.0 on Ruby 2.0.0
+ # Ruby 2.0.0, Rubygems 2.0 and up
- rvm: 2.0.0
env: RGV=v2.1.11
- rvm: 2.0.0
env: RGV=v2.0.14
- # Rubygems goes down to 1.5.3 on Ruby 1.9.3
+ # Ruby 1.9.3, Rubygems 1.5.3 and up
- rvm: 1.9.3
env: RGV=v2.1.11
- rvm: 1.9.3
@@ -73,10 +56,7 @@ matrix:
env: RGV=v1.6.2
- rvm: 1.9.3
env: RGV=v1.5.3
- # We only want an overview of how 1.9.2 is doing
- - rvm: 1.9.2
- env: RGV=v2.1.11
- # Rubygems goes down to 1.3.6 on Ruby 1.8.7
+ # Ruby 1.8.7, Rubygems 1.3.6 and up
- rvm: 1.8.7
env: RGV=v1.8.29
- rvm: 1.8.7
@@ -91,3 +71,23 @@ matrix:
env: RGV=v1.3.7
- rvm: 1.8.7
env: RGV=v1.3.6
+
+ # ALLOWED FAILURES
+ # Ruby 1.9.2 sanity check
+ # (but it's just too slow and sometimes goes over the Travis limit)
+ - rvm: 1.9.2
+ env: RGV=v2.2.2
+ # Ruby-head (we want to know how we're doing, but not fail the build)
+ - rvm: ruby-head
+ env: RGV=master
+ # JRuby, the latest (not maintained, but good to know)
+ - rvm: jruby
+ env: RGV=v2.2.2
+ # Rubinius, the latest (not maintained, but good to know)
+ - rvm: rbx
+ env: RGV=v2.2.2
+ allow_failures:
+ - rvm: ruby-head
+ - rvm: 1.9.2
+ - rvm: jruby
+ - rvm: rbx