From 39d98d3f3e79bc4f73ce2ea577f8783f926efecb Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 30 Jul 2026 14:44:03 +0000 Subject: [PATCH] Unpin rdoc on the JRuby CI rdoc 8 needs `rbs >= 4.0.0`, which resolved to the C-extension gem when the pin went in. `gem install rdoc` now picks up `rbs-4.1.1-java`, so the pin is no longer needed. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01PhJnDiMKwunqnLpuXzRY7v --- .github/workflows/jruby.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/jruby.yml b/.github/workflows/jruby.yml index aee09942c9..d898ed65e1 100644 --- a/.github/workflows/jruby.yml +++ b/.github/workflows/jruby.yml @@ -64,12 +64,7 @@ jobs: ruby-version: jruby bundler: none - name: Install runtime and test gems - # rdoc 8.0.0 added a runtime dependency on rbs, which pulls the released - # C-extension rbs gem and fails to build on JRuby. Pin rdoc below 8 until - # a -java rbs gem is published. - run: | - gem install prism rake rake-compiler test-unit rspec minitest json-schema pry --no-document - gem install rdoc -v "< 8" --no-document + run: gem install prism rake rake-compiler test-unit rdoc rspec minitest json-schema pry --no-document # jar-dependencies resolves through the JVM, so download the Chicory/ASM # jars into ~/.m2 here on JRuby (jar-dependencies is not available in the # CRuby step above).