-
Notifications
You must be signed in to change notification settings - Fork 337
116 lines (113 loc) · 3.34 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
services:
redis:
image: redis
ports:
- 6379:6379
memcached:
image: memcached
ports:
- 11211:11211
strategy:
fail-fast: false
matrix:
ruby:
- '3.3'
- '3.2'
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- '2.5'
gemfile:
- rack_3
- rack_2
- rails_7_1
- rails_7_0
- rails_6_1
- rails_6_0
- rails_5_2
- dalli3
- dalli2
- redis_5
- redis_4
- connection_pool_dalli
- active_support_7_1_redis_cache_store
- active_support_7_1_redis_cache_store_pooled
- active_support_7_0_redis_cache_store
- active_support_7_0_redis_cache_store_pooled
- active_support_6_redis_cache_store
- active_support_6_redis_cache_store_pooled
- active_support_5_redis_cache_store
- active_support_5_redis_cache_store_pooled
- redis_store
exclude:
- gemfile: rails_5_2
ruby: '3.3'
- gemfile: active_support_5_redis_cache_store
ruby: '3.3'
- gemfile: active_support_5_redis_cache_store_pooled
ruby: '3.3'
- gemfile: dalli2
ruby: '3.3'
- gemfile: rails_5_2
ruby: '3.2'
- gemfile: active_support_5_redis_cache_store
ruby: '3.2'
- gemfile: active_support_5_redis_cache_store_pooled
ruby: '3.2'
- gemfile: dalli2
ruby: '3.2'
- gemfile: rails_5_2
ruby: '3.1'
- gemfile: active_support_5_redis_cache_store
ruby: '3.1'
- gemfile: active_support_5_redis_cache_store_pooled
ruby: '3.1'
- gemfile: dalli2
ruby: '3.1'
- gemfile: rails_5_2
ruby: '3.0'
- gemfile: active_support_5_redis_cache_store
ruby: '3.0'
- gemfile: active_support_5_redis_cache_store_pooled
ruby: '3.0'
- gemfile: dalli2
ruby: '3.0'
- gemfile: rails_7_0
ruby: '2.6'
- gemfile: rails_7_0
ruby: '2.5'
- gemfile: active_support_7_0_redis_cache_store
ruby: '2.6'
- gemfile: active_support_7_0_redis_cache_store
ruby: '2.5'
- gemfile: active_support_7_0_redis_cache_store_pooled
ruby: '2.6'
- gemfile: active_support_7_0_redis_cache_store_pooled
ruby: '2.5'
- gemfile: rails_7_1
ruby: '2.6'
- gemfile: rails_7_1
ruby: '2.5'
- gemfile: active_support_7_1_redis_cache_store
ruby: '2.6'
- gemfile: active_support_7_1_redis_cache_store
ruby: '2.5'
- gemfile: active_support_7_1_redis_cache_store_pooled
ruby: '2.6'
- gemfile: active_support_7_1_redis_cache_store_pooled
ruby: '2.5'
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake