From e7bbf26cb2b32d7325b363e1013d31a69e292a1f Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 16 Dec 2021 14:29:10 +0900 Subject: [PATCH 1/4] psych depends stringio only CRuby --- psych.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psych.gemspec b/psych.gemspec index 291d8345..65dd7156 100644 --- a/psych.gemspec +++ b/psych.gemspec @@ -63,7 +63,7 @@ DESCRIPTION s.add_dependency 'jar-dependencies', '>= 0.1.7' else s.extensions = ["ext/psych/extconf.rb"] + s.add_dependency 'stringio' end - s.add_dependency 'stringio' end From 091a5b873132a12cee9d666944beef88a8524a9a Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 16 Dec 2021 14:34:47 +0900 Subject: [PATCH 2/4] The stable version of JRuby is broken now. --- .github/workflows/ubuntu-jruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu-jruby.yml b/.github/workflows/ubuntu-jruby.yml index aaea6ac7..e9cc13f7 100644 --- a/.github/workflows/ubuntu-jruby.yml +++ b/.github/workflows/ubuntu-jruby.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [ jruby, jruby-head ] + ruby: [ jruby-head ] steps: - uses: actions/checkout@v2 - name: Set up Ruby From 6d14bfdf346e8ce8df5559aabd9df2d74751fea8 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 16 Dec 2021 14:41:11 +0900 Subject: [PATCH 3/4] Use gem install instead of bundle install --- .github/workflows/ubuntu-jruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu-jruby.yml b/.github/workflows/ubuntu-jruby.yml index e9cc13f7..a2d74199 100644 --- a/.github/workflows/ubuntu-jruby.yml +++ b/.github/workflows/ubuntu-jruby.yml @@ -16,7 +16,7 @@ jobs: with: ruby-version: ${{ matrix.ruby }} - name: Install dependencies - run: bundle install + run: gem install ruby-maven power_assert test-unit rake-compiler - name: compile run: rake compile - name: test From b7ad3a95025b3ba50c1e1ad12449d987c8e491b2 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 16 Dec 2021 14:43:31 +0900 Subject: [PATCH 4/4] Revert "The stable version of JRuby is broken now." This reverts commit 091a5b873132a12cee9d666944beef88a8524a9a. --- .github/workflows/ubuntu-jruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu-jruby.yml b/.github/workflows/ubuntu-jruby.yml index a2d74199..b17bbf45 100644 --- a/.github/workflows/ubuntu-jruby.yml +++ b/.github/workflows/ubuntu-jruby.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [ jruby-head ] + ruby: [ jruby, jruby-head ] steps: - uses: actions/checkout@v2 - name: Set up Ruby