forked from appsignal/appsignal-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_matrix.yml
251 lines (243 loc) · 7.68 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
semaphore: # Default `.semaphore/semaphore.yml` contents
version: v1.0
name: AppSignal Ruby Build and Tests
agent:
machine:
type: e1-standard-2
os_image: ubuntu2004
# Cancel all running and queued workflows before this one
auto_cancel:
running:
# Ignore main AND develop branch as we want it to build all workflows
when: "branch != 'main' AND branch != 'develop'"
global_job_config:
env_vars:
- name: RUNNING_IN_CI
value: "true"
- name: _BUNDLER_CACHE
value: "v3"
- name: _GEMS_CACHE
value: "v3"
prologue:
commands:
- checkout
- rm -f $HOME/.rbenv/plugins/rbenv-gem-rehash/etc/rbenv.d/exec/~gem-rehash.bash
- |
if [ -n "$RUBY_VERSION" ]; then
if ! (sem-version ruby "$RUBY_VERSION"); then
ruby_key="rbenv-ruby-$RUBY_VERSION"
echo "Attempting to build Ruby $RUBY_VERSION from source"
git -C "$HOME/.rbenv/plugins/ruby-build" pull
cache restore "$ruby_key"
sem-version ruby "$RUBY_VERSION"
if ! cache has_key "$ruby_key"; then
cache store "$ruby_key" "$HOME/.rbenv/versions/$RUBY_VERSION"
fi
fi
./support/check_versions
else
echo Skipping Ruby install
fi
blocks:
- name: Validation
dependencies: []
task:
prologue:
commands:
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec)
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec)
- ./support/bundler_wrapper install --jobs=3 --retry=3
jobs:
- name: Validate CI setup
env_vars:
- name: RUBY_VERSION
value: 3.2.2
- name: GEMSET
value: no_dependencies
- name: BUNDLE_GEMFILE
value: Gemfile
commands:
- ./support/bundler_wrapper exec rake build_matrix:semaphore:validate
epilogue:
on_pass:
commands:
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec) .bundle
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec) $HOME/.gem
- name: Ruby linters
dependencies: []
task:
prologue:
commands:
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec)
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec)
- ./support/bundler_wrapper install --jobs=3 --retry=3
jobs:
- name: RuboCop
env_vars:
- name: RUBY_VERSION
value: 3.2.2
- name: GEMSET
value: no_dependencies
- name: BUNDLE_GEMFILE
value: Gemfile
commands:
- ./support/bundler_wrapper exec rubocop
epilogue:
on_pass:
commands:
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec) .bundle
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec) $HOME/.gem
- name: Other linters
dependencies: []
task:
jobs:
- name: Git Lint (Lintje)
commands:
- script/lint_git
- name: Integration tests
dependencies:
- Validation
task:
prologue:
commands:
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-diagnose-$(checksum Gemfile)
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-diagnose-$(checksum Gemfile)
- ./support/bundler_wrapper install --jobs=3 --retry=3
- ./support/bundler_wrapper exec rake extension:install
- "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report file found'"
- "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file found'"
- git submodule init
- git submodule update
jobs:
- name: Diagnose
env_vars:
- name: RUBY_VERSION
value: 3.0.2
- name: LANGUAGE
value: ruby
commands:
- spec/integration/diagnose/bin/test
epilogue:
on_pass:
commands:
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-diagnose-$(checksum Gemfile) .bundle
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-diagnose-$(checksum Gemfile) $HOME/.gem
matrix:
env_vars: # Shared for all jobs in the build matrix
- name: BUNDLE_PATH
value: "../.bundle/"
- name: RAILS_ENV
value: "test"
- name: JRUBY_OPTS
value: ""
- name: COV
value: "1"
prologue: # Shared for all jobs in the build matrix
commands:
- cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec)
- cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec)
- ./support/install_deps
- bundle config set clean 'true'
- ./support/bundler_wrapper install --jobs=3 --retry=3
epilogue: # Shared for all jobs in the build matrix
on_pass:
commands:
- cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec) .bundle
- cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)-$(checksum appsignal.gemspec) $HOME/.gem
defaults:
rubygems: "latest"
bundler: "latest"
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"
ruby:
- ruby: "2.7.8"
- ruby: "3.0.5"
- ruby: "3.1.3"
- ruby: "3.2.1"
- ruby: "3.3.1"
- ruby: "jruby-9.4.1.0"
gems: "minimal"
gems:
- gem: "no_dependencies"
- gem: "capistrano2"
- gem: "capistrano3"
- gem: "dry-monitor"
only:
ruby:
- "3.0.5"
- "3.1.3"
- "3.2.1"
- "3.3.1"
- gem: "grape"
- gem: "hanami"
only:
ruby:
- "3.0.5"
- "3.1.3"
- "3.2.1"
- "3.3.1"
- gem: "http5"
- gem: "padrino"
- gem: "psych-3"
only:
ruby:
- "2.7.8"
- "3.0.5"
- "3.1.3"
- "3.2.1"
- "3.3.1"
- gem: "psych-4"
only:
ruby:
- "2.7.8"
- "3.0.5"
- "3.1.3"
- "3.2.1"
- "3.3.1"
- gem: "que"
- gem: "que_beta"
- gem: "rails-6.0"
only:
ruby:
- "2.7.8"
- "3.0.5"
- "jruby-9.4.1.0"
- gem: "rails-6.1"
only:
ruby:
- "2.7.8"
- "3.0.5"
- "3.1.3"
- "3.2.1"
- "3.3.1"
- "jruby-9.4.1.0"
- gem: "rails-7.0"
only:
ruby:
- "2.7.8"
- "3.0.5"
- "3.1.3"
- "3.2.1"
- "3.3.1"
- "jruby-9.4.1.0"
- gem: "rails-7.1"
only:
ruby:
- "3.0.5"
- "3.1.3"
- "3.2.1"
- "3.3.1"
- "jruby-9.4.1.0"
- gem: "sequel"
- gem: "sinatra"
- gem: "webmachine1"
- gem: "webmachine2"
- gem: "redis-4"
- gem: "redis-5"