-
Notifications
You must be signed in to change notification settings - Fork 336
130 lines (127 loc) · 3.52 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
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:
matrix:
ruby:
- 3.2.2
- 3.1.4
- 3.0.6
- 2.7.8
- 2.6.10
- 2.5.8
gemfile:
- rack_3
- rack_2
- rack_1
- 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: rack_1
ruby: 3.2.2
- gemfile: rails_5_2
ruby: 3.2.2
<<<<<<< HEAD
=======
- 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
>>>>>>> main
- gemfile: dalli2
ruby: 3.2.2
- gemfile: rack_1
ruby: 3.1.4
- gemfile: rails_5_2
ruby: 3.1.4
<<<<<<< HEAD
=======
- 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
>>>>>>> main
- gemfile: dalli2
ruby: 3.1.4
- gemfile: rack_1
ruby: 3.0.6
- gemfile: rails_5_2
ruby: 3.0.6
<<<<<<< HEAD
=======
- 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
>>>>>>> main
- gemfile: dalli2
ruby: 3.0.6
- gemfile: rack_1
ruby: 2.7.8
- gemfile: rails_7_0
ruby: 2.6.10
- gemfile: rails_7_0
ruby: 2.5.8
- gemfile: active_support_7_0_redis_cache_store
ruby: 2.5.8
- gemfile: active_support_7_0_redis_cache_store
ruby: 2.6.10
- gemfile: active_support_7_0_redis_cache_store_pooled
ruby: 2.5.8
- gemfile: active_support_7_0_redis_cache_store_pooled
ruby: 2.6.10
- gemfile: rails_7_1
ruby: 2.6.10
- gemfile: rails_7_1
ruby: 2.5.8
- gemfile: active_support_7_1_redis_cache_store
ruby: 2.5.8
- gemfile: active_support_7_1_redis_cache_store
ruby: 2.6.10
- gemfile: active_support_7_1_redis_cache_store_pooled
ruby: 2.5.8
- gemfile: active_support_7_1_redis_cache_store_pooled
ruby: 2.6.10
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake