Skip to content

Commit

Permalink
Fix TravisCI build for sqlite3 version change. (bootstrap-ruby#519)
Browse files Browse the repository at this point in the history
* Make build work until we find out why sqlite3 1.4.0 is causing failure.

* Make build work for Travis matrix.
  • Loading branch information
lcreid authored Feb 12, 2019
1 parent e6f5b09 commit 78cb00b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ group :test do
gem "diffy"
gem "equivalent-xml"
gem "mocha"
gem "sqlite3"
# sqlite3 1.4.0 breaks the test suite.
# https://github.com/rails/rails/pull/35154
gem "sqlite3", "~> 1.3.6"
gem "timecop", "~> 0.7.1"
end
2 changes: 1 addition & 1 deletion test/gemfiles/5.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ group :test do
gem "equivalent-xml"
gem "minitest", "~> 5.10.3"
gem "mocha"
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
gem "timecop", "~> 0.7.1"
end
2 changes: 1 addition & 1 deletion test/gemfiles/5.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ group :test do
gem "diffy"
gem "equivalent-xml"
gem "mocha"
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
gem "timecop", "~> 0.7.1"
end
2 changes: 1 addition & 1 deletion test/gemfiles/5.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ group :test do
gem "diffy"
gem "equivalent-xml"
gem "mocha"
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
gem "timecop", "~> 0.7.1"
end
2 changes: 1 addition & 1 deletion test/gemfiles/6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ group :test do
gem "diffy"
gem "equivalent-xml"
gem "mocha"
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
gem "timecop", "~> 0.7.1"
end

0 comments on commit 78cb00b

Please sign in to comment.