From da325a6f7f32d2eb47d0511d68cb00657e2ea20e Mon Sep 17 00:00:00 2001 From: Charles Oliver Nutter Date: Tue, 4 Mar 2025 11:02:15 -0600 Subject: [PATCH 1/2] Reenable JRuby for testing JRuby's recent issues with jar-dependencies caused installs to fail, but those issues have been resolved as of JRuby 9.4.12.0 (and by extension, jruby-head). Reverts part of #1228. --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a5adefeb40..4ca5ff4340 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,6 @@ jobs: # 2.7 breaks `test_parse_statements_nodoc_identifier_alias_method` min_version: 3.0 versions: '["mswin"]' - engine: cruby-truffleruby test: needs: ruby-versions From 96beab3686bab8aef8d3b12292976264dbaa2dc9 Mon Sep 17 00:00:00 2001 From: Charles Oliver Nutter Date: Tue, 4 Mar 2025 11:10:14 -0600 Subject: [PATCH 2/2] Omit JRuby on Windows This is temporary until jruby/jruby#8672 can be addressed. --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4ca5ff4340..9a53d22107 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,6 +25,10 @@ jobs: ruby: truffleruby - os: windows-latest ruby: truffleruby-head + - os: windows-latest + ruby: jruby + - os: windows-latest + ruby: jruby-head - os: macos-latest ruby: mswin - os: ubuntu-latest