Skip to content

Commit

Permalink
Enforce latest rubygems on CI (#2439)
Browse files Browse the repository at this point in the history
  • Loading branch information
solnic authored Oct 20, 2024
1 parent ee37a4a commit b4bbed2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/sentry_delayed_job_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
rubygems: latest
bundler-cache: true

- name: Run specs
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sentry_opentelemetry_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
rubygems: latest
bundler-cache: true

- name: Run specs
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sentry_rails_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
rubygems: latest
bundler-cache: true

- name: Build with Rails ${{ matrix.rails_version }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sentry_resque_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
rubygems: latest
bundler-cache: true

- name: Start Redis
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sentry_ruby_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
rubygems: latest
bundler-cache: true

- name: Start Redis
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sentry_sidekiq_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- { ruby_version: 2.6, sidekiq_version: 5.0 }
- { ruby_version: 2.6, sidekiq_version: 6.0 }
- { ruby_version: jruby, sidekiq_version: 5.0 }
- { ruby_version: jruby, sidekiq_version: 6.0 }
- { ruby_version: jruby, sidekiq_version: 6.5 }
- { ruby_version: jruby, sidekiq_version: 7.0 }
- {
ruby_version: "3.2",
Expand All @@ -57,6 +57,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
rubygems: latest
bundler-cache: true

- name: Start Redis
Expand Down
2 changes: 2 additions & 0 deletions sentry-sidekiq/spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
rescue LoadError
end

require "sidekiq"

# this enables sidekiq's server mode
require "sidekiq/cli"

Expand Down

0 comments on commit b4bbed2

Please sign in to comment.