Skip to content

Commit

Permalink
Merge pull request #1215 from paper-trail-gem/travis_broke_mysql
Browse files Browse the repository at this point in the history
Temporarily allow mysql builds to fail
  • Loading branch information
jaredbeck authored Jul 28, 2019
2 parents 514c53f + 657f5dd commit 22e941c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ gemfile:
- gemfiles/ar_5.2.gemfile
- gemfiles/ar_6.0.gemfile
matrix:
allow_failures:
# We haven't changed anything, but mysql builds no longer work on TravisCI.
# Allow failures temporarily until we have time to troubleshoot this.
- env: DB=mysql
exclude:
# rails 6 requires ruby >= 2.5.0
- rvm: 2.3.8
Expand Down
4 changes: 3 additions & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ end

appraise "ar-6.0" do
# >= 6.0.0.beta3 because CVE-2019-5420
gem "activerecord", [">= 6.0.0.beta3", "< 6.1"]
# < rc2 because there seem to have been breaking changes between rc1 and rc2
# re: MigrationContext
gem "activerecord", [">= 6.0.0.beta3", "< 6.0.0.rc2"]
gem "rails-controller-testing", "~> 1.0.3"

# Must match `gem` call in active_record/connection_adapters/sqlite3_adapter.rb
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/ar_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "activerecord", [">= 6.0.0.beta3", "< 6.1"]
gem "activerecord", [">= 6.0.0.beta3", "< 6.0.0.rc2"]
gem "rails-controller-testing", "~> 1.0.3"
gem "sqlite3", "~> 1.4"

Expand Down

0 comments on commit 22e941c

Please sign in to comment.