From 3183bb5ad15ab301c6a3b3385d9be9f50b562692 Mon Sep 17 00:00:00 2001 From: Chad Wilson <29788154+chadlwilson@users.noreply.github.com> Date: Sat, 20 Sep 2025 21:04:22 +0800 Subject: [PATCH 1/2] Revert "Skip test failing on JRuby on Windows" This reverts commit f2f42b7848feff522ffa488a5236ba0a73bccbdd. --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 03e6d1777..64c9b0aec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -195,8 +195,7 @@ jobs: shell: bash run: echo ~ && bundle install - name: Windows JRuby - # Should be startsWith(matrix.ruby, 'jruby') but broken on jruby-head: https://github.com/jruby/jruby/issues/8623 - if: startsWith(matrix.os, 'windows') && matrix.ruby == 'jruby' + if: startsWith(matrix.os, 'windows') && startsWith(matrix.ruby, 'jruby') run: gem install sassc testDotRubyVersion: From 66b8698a47d561dfaa12dc07be1950f3e80191a1 Mon Sep 17 00:00:00 2001 From: Chad Wilson <29788154+chadlwilson@users.noreply.github.com> Date: Sat, 20 Sep 2025 21:05:39 +0800 Subject: [PATCH 2/2] Test on JRuby 9.4 as well as 10.0 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 64c9b0aec..a6ed8f614 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: os: [ ubuntu-22.04, ubuntu-24.04, ubuntu-22.04-arm, ubuntu-24.04-arm, macos-13, macos-14, macos-15, windows-2022, windows-2025, windows-11-arm ] ruby: [ '1.9', '2.0', '2.1', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4', ruby-head, - jruby, jruby-head, + jruby-9.4, jruby, jruby-head, truffleruby, truffleruby-head, truffleruby+graalvm, truffleruby+graalvm-head ]