Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude builds that we know will fail #28

Merged
merged 1 commit into from
Feb 18, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,23 @@ gemfile:
- gemfiles/rails_4.2.6.gemfile
- gemfiles/rails_4.2.7.gemfile
- gemfiles/rails_4.2.7.1.gemfile
- gemfiles/rails_5.0.0.gemfile
- gemfiles/rails_5.0.0.1.gemfile
- gemfiles/rails_5.0.1.gemfile

matrix:
include:
- rvm: 2.2.6
exclude:
# Rails 5.0+ requires a minimum of Ruby 2.2.2.
- rvm: 2.1.9
gemfile: gemfiles/rails_5.0.0.gemfile
- rvm: 2.1.9
gemfile: gemfiles/rails_5.0.0.1.gemfile
- rvm: 2.1.9
gemfile: gemfiles/rails_5.0.1.gemfile
- rvm: 2.3.3
gemfile: gemfiles/rails_5.0.0.gemfile
gemfile: gemfiles/rails_5.0.0.1.gemfile
gemfile: gemfiles/rails_5.0.1.gemfile

# This Rails versions are broken with the latest Ruby.
# They are fixed in the next version :
# https://github.com/rails/rails/blob/v4.0.6/activerecord/CHANGELOG.md
# https://github.com/rails/rails/blob/v4.1.2/activerecord/CHANGELOG.md
matrix:
allow_failures:
# These Rails versions are broken with the latest Ruby versions.
# They are fixed in the next version:
# https://github.com/rails/rails/blob/v4.0.6/activerecord/CHANGELOG.md
# https://github.com/rails/rails/blob/v4.1.2/activerecord/CHANGELOG.md
- rvm: 2.2.6
gemfile: gemfiles/rails_4.0.0.gemfile
- rvm: 2.2.6
Expand Down