mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
Add Rails master to Travis build matrix.
Allow failures to avoid email barrages for random day-to-day changes in Rails. Once 4.0 stable is branched we'll depend on that instead and then no forbid failures.
This commit is contained in:
parent
ec3157f4db
commit
c0a25c1373
2 changed files with 13 additions and 0 deletions
|
@ -9,25 +9,31 @@ gemfile:
|
|||
- test/gemfiles/Gemfile.rails-3.0.x
|
||||
- test/gemfiles/Gemfile.rails-3.1.x
|
||||
- test/gemfiles/Gemfile.rails-3.2.x
|
||||
- test/gemfiles/Gemfile.rails-master
|
||||
matrix:
|
||||
exclude:
|
||||
# Don't kill Travis: just test against the latest version on Head, JRuby and rbx.
|
||||
- { rvm: jruby-18mode, gemfile: test/gemfiles/Gemfile.rails-3.0.x }
|
||||
- { rvm: jruby-18mode, gemfile: test/gemfiles/Gemfile.rails-3.1.x }
|
||||
- { rvm: jruby-18mode, gemfile: test/gemfiles/Gemfile.rails-master }
|
||||
|
||||
- { rvm: rbx-18mode, gemfile: test/gemfiles/Gemfile.rails-3.0.x }
|
||||
- { rvm: rbx-18mode, gemfile: test/gemfiles/Gemfile.rails-3.1.x }
|
||||
- { rvm: rbx-18mode, gemfile: test/gemfiles/Gemfile.rails-master }
|
||||
|
||||
- { rvm: rbx-19mode, gemfile: test/gemfiles/Gemfile.rails-3.0.x }
|
||||
- { rvm: rbx-19mode, gemfile: test/gemfiles/Gemfile.rails-3.1.x }
|
||||
- { rvm: rbx-19mode, gemfile: test/gemfiles/Gemfile.rails-master }
|
||||
|
||||
- { rvm: ruby-head, gemfile: test/gemfiles/Gemfile.rails-3.0.x }
|
||||
- { rvm: ruby-head, gemfile: test/gemfiles/Gemfile.rails-3.1.x }
|
||||
- { rvm: ruby-head, gemfile: test/gemfiles/Gemfile.rails-master }
|
||||
|
||||
allow_failures:
|
||||
- { rvm: rbx-19mode, gemfile: test/gemfiles/Gemfile.rails-3.2.x }
|
||||
- { rvm: jruby-18mode, gemfile: test/gemfiles/Gemfile.rails-3.2.x }
|
||||
- { rvm: ruby-head, gemfile: test/gemfiles/Gemfile.rails-3.2.x }
|
||||
- { rvm: 1.9.3, gemfile: test/gemfiles/Gemfile.rails-master }
|
||||
|
||||
branches:
|
||||
only:
|
||||
|
|
7
test/gemfiles/Gemfile.rails-master
Normal file
7
test/gemfiles/Gemfile.rails-master
Normal file
|
@ -0,0 +1,7 @@
|
|||
source :rubygems
|
||||
|
||||
gem 'rails', git: 'git://github.com/rails/rails.git'
|
||||
gem 'journey', git: 'git://github.com/rails/journey.git'
|
||||
gem 'activerecord-deprecated_finders', git: 'git://github.com/rails/activerecord-deprecated_finders.git'
|
||||
gemspec :path => "../.."
|
||||
|
Loading…
Reference in a new issue