-
Notifications
You must be signed in to change notification settings - Fork 116
/
build_matrix.yml
198 lines (190 loc) · 4.28 KB
/
build_matrix.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
github:
name: Ruby gem CI
"on":
push:
branches: ["main", "develop"]
pull_request:
types: [opened, reopened, synchronize]
schedule:
- cron: "0 0 * * 1-5"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !contains(github.ref, 'main')}}
jobs:
lint-git:
name: "Git linter (Lintje)"
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch depth is required
- name: "Run Git linter"
uses: lintje/action@v0.11
lint-style:
name: "Ruby style linter (RuboCop)"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- name: "Run RuboCop"
run: bundle exec rubocop
validation:
name: "Validation of CI"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- run: rake build_matrix:github:validate
integration_tests:
name: "Diagnose integration tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- name: "Install gem extension"
run: rake extension:install
- name: "Bundle install"
run: bundle install
working-directory: "spec/integration/diagnose"
- name: "Run diagnose integration tests"
run: bundle exec rspec
working-directory: "spec/integration/diagnose"
env:
LANGUAGE: ruby
matrix:
env: # Shared for all jobs in the build matrix
RAILS_ENV: "test"
JRUBY_OPTS: ""
COV: "1"
gemsets: # By default all gems are tested
none:
- "no_dependencies"
minimal:
- "no_dependencies"
- "rails-6.0"
- "rails-6.1"
- "rails-7.0"
- "rails-7.1"
- "rails-7.2"
- "rails-8.0"
ruby:
- ruby: "3.3.4"
- ruby: "3.2.5"
- ruby: "3.1.6"
- ruby: "3.0.7"
- ruby: "2.7.8"
- ruby: "jruby-9.4.7.0"
gems: "minimal"
gems:
- gem: "no_dependencies"
- gem: "capistrano2"
- gem: "capistrano3"
- gem: "dry-monitor"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- "3.0.7"
- gem: "grape"
- gem: "hanami-2.0"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- "3.0.7"
- gem: "hanami-2.1"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- "3.0.7"
- gem: "hanami-2.2"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- gem: "http5"
- gem: "padrino"
- gem: "psych-3"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- "3.0.7"
- "2.7.8"
- gem: "psych-4"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- "3.0.7"
- "2.7.8"
- gem: "que-1"
- gem: "que-2"
- gem: "rails-6.0"
only:
ruby:
- "3.0.7"
- "2.7.8"
- "jruby-9.4.7.0"
- gem: "rails-6.1"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- "3.0.7"
- "2.7.8"
- "jruby-9.4.7.0"
- gem: "rails-7.0"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- "3.0.7"
- "2.7.8"
- "jruby-9.4.7.0"
- gem: "rails-7.1"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- "3.0.7"
- "jruby-9.4.7.0"
- gem: "rails-7.2"
only:
ruby:
- "3.3.4"
- "3.2.5"
- "3.1.6"
- "jruby-9.4.7.0"
- gem: "rails-8.0"
only:
ruby:
- "3.3.4"
- "3.2.5"
- gem: "sequel"
- gem: "sinatra"
- gem: "webmachine2"
- gem: "redis-4"
- gem: "redis-5"