Skip to content

Commit

Permalink
CI against Rails 7.2 (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
y-yagi committed Oct 18, 2023
1 parent a5d8c84 commit 2839d2c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:

gemfile:
- Gemfile
- gemfiles/rails_edge.gemfile # 7.1.0.alpha
- gemfiles/rails_edge.gemfile # 7.2.0.alpha
- gemfiles/rails_7.1.gemfile
- gemfiles/rails_7.0.gemfile
- gemfiles/rails_6.1.gemfile
- gemfiles/rails_6.0.gemfile
Expand All @@ -49,10 +50,14 @@ jobs:
# NOTE(ivy): Rails 7 requires Ruby version >= 2.7
- ruby: jruby-9.3
gemfile: gemfiles/rails_edge.gemfile
- ruby: jruby-9.3
gemfile: gemfiles/rails_7.1.gemfile
- ruby: jruby-9.3
gemfile: gemfiles/rails_7.0.gemfile
- ruby: jruby-9.2
gemfile: gemfiles/rails_edge.gemfile
- ruby: jruby-9.2
gemfile: gemfiles/rails_7.1.gemfile
- ruby: jruby-9.2
gemfile: gemfiles/rails_7.0.gemfile

Expand Down
19 changes: 19 additions & 0 deletions gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# frozen_string_literal: true

source 'https://rubygems.org'

# Specify your gem's dependencies in lograge.gemspec
gemspec path: '..'

group :test do
gem 'actionpack', '~> 7.1.0'
gem 'activerecord', '~> 7.1.0'
# logstash does not release any gems on rubygems, but they have two gemspecs within their repo.
# Using the tag is an attempt of having a stable version to test against where we can ensure that
# we test against the correct code.
gem 'logstash-event', git: 'https://github.com/elastic/logstash', tag: 'v1.5.4'
# logstash 1.5.4 is only supported with jrjackson up to 0.2.9
gem 'jrjackson', '~> 0.2.9', platforms: :jruby
gem 'lines'
gem 'thread_safe'
end

0 comments on commit 2839d2c

Please sign in to comment.