From ff01a677302162bf4ff0e62f1e21f7087ae4eba3 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 19 Jan 2021 09:08:07 +0900 Subject: [PATCH 1/2] Test with JRuby head --- .github/workflows/ubuntu.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index ee25be4..a1cc496 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: [ 'head', '3.0', '2.7', '2.6', '2.5', 'jruby-9.2.14' ] + ruby: [ 'head', '3.0', '2.7', '2.6', '2.5', 'jruby-head', 'jruby-9.2' ] steps: - uses: actions/checkout@master - name: Set up Ruby From 02cb576d2289e9c99090dffd31a3060d58a220bf Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 19 Jan 2021 09:12:36 +0900 Subject: [PATCH 2/2] Stop to enable ObjectSpace in JRuby --- Rakefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Rakefile b/Rakefile index 64eff5f..d81dd1f 100644 --- a/Rakefile +++ b/Rakefile @@ -1,8 +1,6 @@ require "bundler/gem_tasks" require "rake/testtask" -JRuby.objectspace = true if RUBY_PLATFORM == 'java' - Rake::TestTask.new(:test) do |t| t.libs << "test/lib" t.ruby_opts << "-rhelper"