Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Rails 8 to CI #677

Merged
merged 1 commit into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
gemfile:
- rack_3
- rack_2
- rails_8_0
- rails_7_2
- rails_7_1
- rails_7_0
Expand All @@ -39,6 +40,8 @@ jobs:
- redis_5
- redis_4
- connection_pool_dalli
- active_support_8_0_redis_cache_store
- active_support_8_0_redis_cache_store_pooled
- active_support_7_2_redis_cache_store
- active_support_7_2_redis_cache_store_pooled
- active_support_7_1_redis_cache_store
Expand Down Expand Up @@ -131,6 +134,36 @@ jobs:
ruby: '2.6'
- gemfile: active_support_7_2_redis_cache_store_pooled
ruby: '2.5'
- gemfile: rails_8_0
ruby: '3.1'
- gemfile: rails_8_0
ruby: '3.0'
- gemfile: rails_8_0
ruby: '2.7'
- gemfile: rails_8_0
ruby: '2.6'
- gemfile: rails_8_0
ruby: '2.5'
- gemfile: active_support_8_0_redis_cache_store
ruby: '3.1'
- gemfile: active_support_8_0_redis_cache_store
ruby: '3.0'
- gemfile: active_support_8_0_redis_cache_store
ruby: '2.7'
- gemfile: active_support_8_0_redis_cache_store
ruby: '2.6'
- gemfile: active_support_8_0_redis_cache_store
ruby: '2.5'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '3.1'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '3.0'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '2.7'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '2.6'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '2.5'
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
Expand Down
13 changes: 13 additions & 0 deletions gemfiles/active_support_8_0_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activesupport", "~> 8.0.0"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
14 changes: 14 additions & 0 deletions gemfiles/active_support_8_0_redis_cache_store_pooled.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activesupport", "~> 8.0.0"
gem "connection_pool", "~> 2.2"
gem "redis", "~> 5.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"
12 changes: 12 additions & 0 deletions gemfiles/rails_8_0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "railties", "~> 8.0.0"

group :maintenance, optional: true do
gem "bake"
gem "bake-gem"
end

gemspec path: "../"