Skip to content

Commit

Permalink
Limit sqlite3 version on Ruby <2.5 in CI
Browse files Browse the repository at this point in the history
Ruby 2.4 CI is having issues building sqlite3 1.6.9, so this
forces an earlier version.
  • Loading branch information
jeremyevans committed Jul 23, 2024
1 parent 4dfc49c commit 2412336
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ platforms :ruby do
gem "mysql2"
end

gem 'sqlite3'
if RUBY_VERSION < '2.5'
gem 'sqlite3', '< 1.5'
else
gem 'sqlite3'
end
end

platforms :jruby do
Expand Down

0 comments on commit 2412336

Please sign in to comment.