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
  • Loading branch information
jeremyevans committed Jul 23, 2024
1 parent d850b43 commit e7093e1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@ end
platforms :ruby do
sequel_pg = RUBY_VERSION.split('.')[1].to_i.send(Time.now.yday.even? ? :even? : :odd?)

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

if RUBY_VERSION < '2.0.0'
gem "pg", '<0.19.0'
gem "mysql2", '<0.5'
Expand Down

0 comments on commit e7093e1

Please sign in to comment.