8000 Fix CI against JRuby, JRuby-head, and Windows · rubyzip/rubyzip@3f909b2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3f909b2

Browse files
taglialahainesr
authored andcommitted
Fix CI against JRuby, JRuby-head, and Windows
Additionally: - Use `latest` rubygems, instead of specifying a version and keeping it up to date - Bump `rake` dependency to `~> 13.2.0` to allow tests to pass against Windows
1 parent f7c6b79 commit 3f909b2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: ruby/setup-ruby@v1
2626
with:
2727
ruby-version: ${{ matrix.ruby }}
28-
rubygems: '3.5.23'
28+
rubygems: latest
2929
bundler-cache: true
3030

3131
- name: Run the tests

Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ gemspec
66

77
# TODO: remove when JRuby 9.4.10.0 will be released and available on CI
88
# Ref: https://github.com/jruby/jruby/issues/7262
9-
gem 'jar-dependencies', '0.4.1' if RUBY_PLATFORM.include?('java')
9+
if RUBY_PLATFORM.include?('java')
10+
gem 'jar-dependencies', '0.4.1'
11+
gem 'ruby-maven', '3.3.13'
12+
end

0 commit comments

Comments
 (0)
0