Skip to content

Commit 4dc0f3e

Browse files
authored
ci: fix jruby rails >= 7.2 (#376)
1 parent 1f17cd8 commit 4dc0f3e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Appraisals

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ if min_ruby_version.call('2.7') || RUBY_ENGINE != 'ruby'
5252
end
5353

5454
# Rails 7.1 require Ruby > 2.7
55-
if min_ruby_version.call('2.7') && RUBY_ENGINE != 'jruby'
55+
if min_ruby_version.call('2.7')
5656
appraise 'rails-7.1' do
57-
gem 'activerecord-jdbcsqlite3-adapter', '~> 70.1', platform: :jruby
57+
gem 'activerecord-jdbcsqlite3-adapter', '~> 71.0', platform: :jruby
5858
gem 'bootsnap', '>= 1.16.0'
5959
gem 'psych', '>= 4'
6060
gem 'rails', '~> 7.1.0'
@@ -66,9 +66,9 @@ if min_ruby_version.call('2.7') && RUBY_ENGINE != 'jruby'
6666
end
6767

6868
# Rails 7.2 requires Ruby > 3.1
69-
if min_ruby_version.call('3.1.0') && RUBY_ENGINE != 'jruby'
69+
if min_ruby_version.call('3.1.0')
7070
appraise 'rails-7.2' do
71-
gem 'activerecord-jdbcsqlite3-adapter', '~> 70.1', platform: :jruby
71+
gem 'activerecord-jdbcsqlite3-adapter', '~> 71.0', platform: :jruby
7272
gem 'bootsnap', '>= 1.16.0'
7373
gem 'psych', '>= 4'
7474
gem 'rails', '~> 7.2.0'
@@ -79,9 +79,9 @@ if min_ruby_version.call('3.1.0') && RUBY_ENGINE != 'jruby'
7979
end
8080

8181
# Rails 8.0 requires Ruby > 3.2
82-
if min_ruby_version.call('3.2.0') && RUBY_ENGINE != 'jruby'
82+
if min_ruby_version.call('3.2.0')
8383
appraise 'rails-8.0' do
84-
gem 'activerecord-jdbcsqlite3-adapter', '~> 70.1', platform: :jruby
84+
gem 'activerecord-jdbcsqlite3-adapter', '~> 71.0', platform: :jruby
8585
gem 'bootsnap', '>= 1.16.0'
8686
gem 'kamal', '~> 2.7.0'
8787
gem 'rails', '~> 8.0.0'

0 commit comments

Comments
 (0)