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

ci: test against ActiveSupport::RedisCacheStore v5 #632

Merged
merged 1 commit into from
Oct 24, 2023
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
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,18 @@ jobs:
- connection_pool_dalli
- active_support_redis_cache_store
- active_support_redis_cache_store_pooled
- active_support_5_redis_cache_store
- active_support_5_redis_cache_store_pooled
- redis_store
exclude:
- gemfile: rack_1
ruby: 3.2.2
- gemfile: rails_5_2
ruby: 3.2.2
- gemfile: active_support_5_redis_cache_store
ruby: 3.2.2
- gemfile: active_support_5_redis_cache_store_pooled
ruby: 3.2.2
- gemfile: rails_4_2
ruby: 3.2.2
- gemfile: dalli2
Expand All @@ -54,6 +60,10 @@ jobs:
ruby: 3.1.4
- gemfile: rails_5_2
ruby: 3.1.4
- gemfile: active_support_5_redis_cache_store
ruby: 3.1.4
- gemfile: active_support_5_redis_cache_store_pooled
ruby: 3.1.4
- gemfile: rails_4_2
ruby: 3.1.4
- gemfile: dalli2
Expand All @@ -62,6 +72,10 @@ jobs:
ruby: 3.0.6
- gemfile: rails_5_2
ruby: 3.0.6
- gemfile: active_support_5_redis_cache_store
ruby: 3.0.6
- gemfile: active_support_5_redis_cache_store_pooled
ruby: 3.0.6
- gemfile: rails_4_2
ruby: 3.0.6
- gemfile: dalli2
Expand Down
11 changes: 11 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,17 @@ appraise "active_support_redis_cache_store_pooled" do
gem "redis", "~> 5.0"
end

appraise "active_support_5_redis_cache_store" do
gem "activesupport", "~> 5.2.0"
gem "redis", "~> 5.0"
end

appraise "active_support_5_redis_cache_store_pooled" do
gem "activesupport", "~> 5.2.0"
gem "connection_pool", "~> 2.2"
gem "redis", "~> 5.0"
end

appraise "redis_store" do
gem "redis-store", "~> 1.5"
end
13 changes: 13 additions & 0 deletions gemfiles/active_support_5_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", "~> 5.2.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_5_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", "~> 5.2.0"
gem "connection_pool", "~> 2.2"
gem "redis", "~> 5.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/active_support_redis_cache_store.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@ source "https://rubygems.org"
gem "activesupport", "~> 6.1.0"
gem "redis", "~> 5.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/active_support_redis_cache_store_pooled.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@ gem "activesupport", "~> 6.1.0"
gem "connection_pool", "~> 2.2"
gem "redis", "~> 5.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/connection_pool_dalli.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@ source "https://rubygems.org"
gem "connection_pool", "~> 2.2"
gem "dalli", "~> 3.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/dalli2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "dalli", "~> 2.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/dalli3.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "dalli", "~> 3.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rack_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ gem "activesupport", ">= 4.2"
gem "rack", "~> 1.6"
gem "rack-test", ">= 0.6"

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

gemspec path: "../"
6 changes: 5 additions & 1 deletion gemfiles/rack_2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
source "https://rubygems.org"

gem "rack", "~> 2.0"
gem "railties"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rack_3.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "rack", "~> 3.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_4_2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@ source "https://rubygems.org"
gem "railties", "~> 4.2.0"
gem "rack-test", ">= 0.6"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_5_2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 5.2.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_6_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 6.0.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_6_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 6.1.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_7_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 7.0.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "railties", "~> 7.1.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/redis_4.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "redis", "~> 4.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/redis_5.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "redis", "~> 5.0"

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

gemspec path: "../"
5 changes: 5 additions & 0 deletions gemfiles/redis_store.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "redis-store", "~> 1.5"

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

gemspec path: "../"
Loading