Add Rails 8 to CI (#677)

This commit is contained in:
Santiago Bartesaghi 2024-12-14 22:47:38 -03:00 committed by GitHub
parent 0d40ea6538
commit 0b48f9f92c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 72 additions and 0 deletions

View file

@ -28,6 +28,7 @@ jobs:
gemfile:
- rack_3
- rack_2
- rails_8_0
- rails_7_2
- rails_7_1
- rails_7_0
@ -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
@ -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:

View file

@ -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: "../"

View file

@ -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: "../"

View file

@ -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: "../"