Skip to content

Commit

Permalink
Try explicit jar-dependencies install
Browse files Browse the repository at this point in the history
  • Loading branch information
sl0thentr0py committed Feb 10, 2025
1 parent c35be97 commit a6ef7f9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/sentry_ruby_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,19 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
bundler-cache: ${{ ! contains(matrix.ruby_version, "jruby") }}

- name: Start Redis
uses: supercharge/redis-github-action@c169aa53af4cd5d9321e9114669dbd11be08d307
with:
redis-version: 6

# https://github.com/jruby/jruby/issues/8606#issuecomment-2641501008
- name: Bundle Jruby
if: {{ contains(matrix.ruby_version, "jruby") }}
run: gem install jar-dependencies
run: bundle

- name: Run specs with Rack ${{ matrix.rack_version }} and redis-rb ${{ matrix.redis_rb_version }}
run: bundle exec rake

Expand Down

0 comments on commit a6ef7f9

Please sign in to comment.