Skip to content

Commit

Permalink
Try to work around CI failure on JRuby 9.4
Browse files Browse the repository at this point in the history
JRuby rake complains:

"""
You have already activated jar-dependencies 0.4.1, but your Gemfile
requires jar-dependencies 0.5.1.
"""

Since jar-dependencies isn't listed in the Gemfile, this is obviously
false, but maybe it is because jar-dependencies is a dependency of
another gem.  Hopefully specifying the version will fix things.
  • Loading branch information
jeremyevans committed Dec 18, 2024
1 parent b3631c9 commit f9d2bf7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ platforms :jruby do
if RUBY_VERSION < '2.5'
gem 'racc', '< 1.6'
end

if RUBY_VERSION >= '3.1'
gem 'jar-dependencies', '0.4.1'
end
end

if RUBY_VERSION < '2.2'
Expand Down

0 comments on commit f9d2bf7

Please sign in to comment.