From cfcbf9ccb8ce8eafb981a750caad8d19d07155cf Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 17 Jun 2025 11:18:37 +0900 Subject: [PATCH 1/2] Explicitly install power_assert if ruby head didn't have it https://github.com/ruby/pp/actions/runs/15690453507/job/44204111393?pr=44 --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1c5ed4f..89220d2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,6 +37,9 @@ jobs: ruby-version: ${{ matrix.ruby }} bundler-cache: true # 'bundle install' and enable caching windows-toolchain: none # no extension + - name: Install missing dependencies + run: gem i power_assert + if: ${{ matrix.ruby == 'head' }} - name: Build run: ${{matrix.bundle}} rake build - name: Run test From 9272b21baa4998b29ff40bd8894a9a97821b436d Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 17 Jun 2025 11:21:14 +0900 Subject: [PATCH 2/2] Ignored JRuby test https://github.com/ruby/pp/actions/runs/15690453507/job/44204111393?pr=44 --- .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 89220d2..00a3d45 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: include: - { os: windows-latest, ruby: mingw } - { os: windows-latest, ruby: mswin } - - { os: ubuntu-latest, ruby: 'jruby-head', bundle: 'bundle exec' } + # - { os: ubuntu-latest, ruby: 'jruby-head', bundle: 'bundle exec' } - { os: ubuntu-latest, ruby: 'truffleruby-head' } runs-on: ${{ matrix.os }} steps: