Skip to content

Commit

Permalink
Merge pull request #813 from varvet/kbs/jruby-9.4-failing-ci
Browse files Browse the repository at this point in the history
Workaround JRuby 9.4 and jruby-head are failing (only on CI)
  • Loading branch information
Burgestrand authored Jun 16, 2024
2 parents 7e59b98 + 6551fed commit e888328
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ jobs:
with:
rubygems: latest
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
bundler-cache: ${{ !startsWith(matrix.ruby-version, 'jruby') }}
- name: Bundler install (JRuby workaround)
if: ${{ startsWith(matrix.ruby-version, 'jruby') }}
run: |
gem install psych
bundle install
- name: Run tests
run: bundle exec rspec

Expand Down

0 comments on commit e888328

Please sign in to comment.