-
Notifications
You must be signed in to change notification settings - Fork 116
/
Rakefile
389 lines (343 loc) · 12.5 KB
/
Rakefile
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# frozen_string_literal: true
require "bundler"
require "rubygems/package_task"
require "fileutils"
require "yaml"
VERSION_MANAGERS = {
:chruby => {
:env => "#!/bin/bash\nsource /usr/local/opt/chruby/share/chruby/chruby.sh",
:switch_command => lambda { |version| "chruby #{version}" }
},
:rbenv => {
:env => "#!/bin/bash",
:switch_command => lambda { |version| "rbenv local #{version}" }
},
:rvm => {
:env => "#!/bin/bash --login",
:switch_command => lambda { |version| "rvm use --default #{version}" }
}
}.freeze
def build_job(ruby_version, ruby_gem: nil, runs_on: DEFAULT_RUNS_ON)
name = "Ruby #{ruby_version}"
name = "#{name} - #{ruby_gem}" if ruby_gem
name = "#{name} (#{runs_on})" if runs_on != DEFAULT_RUNS_ON
{
"name" => name,
"needs" => "validation",
"runs-on" => runs_on,
"steps" => [
{
"name" => "Check out repository",
"uses" => "actions/checkout@v4"
},
{
"name" => "Install Ruby",
"uses" => "ruby/setup-ruby@v1",
"with" => {
"ruby-version" => ruby_version,
"bundler-cache" => true
}
},
{
"name" => "Install gem extension",
"run" => "./script/bundler_wrapper exec rake extension:install"
},
{
"name" => "Print extension install report",
"run" => "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report file found'" # rubocop:disable Layout/LineLength
},
{
"name" => "Print Makefile log file",
"run" => "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file found'"
}
]
}
end
def build_matrix_key(ruby_version, ruby_gem: nil, runs_on: DEFAULT_RUNS_ON)
base = "ruby_#{ruby_version}"
base = "#{base}__#{ruby_gem}" if ruby_gem
base = "#{base}_#{runs_on}"
base.downcase.gsub(/\W/, "-")
end
def gems_with_gemfiles
YAML.load_file("build_matrix.yml")["matrix"]["gems"].map { |g| g["gem"] }.freeze
end
GITHUB_ACTION_WORKFLOW_FILE = ".github/workflows/ci.yml"
PRIMARY_JOB_GEMSET = "no_dependencies"
DEFAULT_RUNS_ON = "ubuntu-latest"
namespace :build_matrix do
namespace :github do
task :generate do
yaml = YAML.load_file("build_matrix.yml")
matrix = yaml["matrix"]
github = yaml["github"]
builds = {}
matrix["ruby"].each do |ruby|
ruby_version = ruby["ruby"]
gemset_for_ruby(ruby, matrix).each do |ruby_gem|
next unless included_for_ruby?(matrix, ruby_gem, ruby)
is_primary_job = ruby_gem["gem"] == PRIMARY_JOB_GEMSET
job =
if is_primary_job
build_job(ruby_version)
else
build_job(ruby_version, :ruby_gem => ruby_gem["gem"])
end
job["env"] = matrix["env"]
.merge("BUNDLE_GEMFILE" => "gemfiles/#{ruby_gem["gem"]}.gemfile")
test_step = {
"name" => "Run tests",
"run" => "./script/bundler_wrapper exec rake test"
}
if is_primary_job
job["steps"] << test_step
# Only test the failure scenarios once per Ruby version
job["steps"] << {
"name" => "Run tests without extension",
"run" => "./script/bundler_wrapper exec rake test:failure"
}
builds[build_matrix_key(ruby["ruby"])] = job
else
job["needs"] = build_matrix_key(ruby["ruby"])
job["steps"] << test_step
builds[build_matrix_key(ruby["ruby"], :ruby_gem => ruby_gem["gem"])] = job
end
end
# Add build for macOS
ruby_gem = PRIMARY_JOB_GEMSET
runs_on = "macos-14"
job = build_job(ruby_version, :runs_on => runs_on)
job["env"] = matrix["env"]
.merge("BUNDLE_GEMFILE" => "gemfiles/#{ruby_gem}.gemfile")
job["steps"] << {
"name" => "Run tests",
"run" => "./script/bundler_wrapper exec rake test"
}
job["steps"] << {
"name" => "Run tests without extension",
"run" => "./script/bundler_wrapper exec rake test:failure"
}
builds[build_matrix_key(ruby["ruby"], :runs_on => runs_on)] = job
end
github["jobs"] = github["jobs"].merge(builds)
job_count = github["jobs"].count
header = "# DO NOT EDIT\n" \
"# This is a generated file by the `rake build_matrix:github:generate` task.\n" \
"# See `build_matrix.yml` for the build matrix.\n" \
"# Generate this file with `rake build_matrix:github:generate`.\n" \
"# Generated job count: #{job_count}\n"
generated_yaml = header + YAML.dump(github)
File.write(GITHUB_ACTION_WORKFLOW_FILE, generated_yaml)
puts "Generated `#{GITHUB_ACTION_WORKFLOW_FILE}`"
puts "Job count: #{job_count}"
end
task :validate => :generate do
output = `git status`
if output.include? GITHUB_ACTION_WORKFLOW_FILE
puts "The `#{GITHUB_ACTION_WORKFLOW_FILE}` is modified. The changes were not committed."
puts "Please run `rake build_matrix:github:generate` and commit the changes."
exit 1
end
end
end
namespace :local do
task :generate do
yaml = YAML.load_file("build_matrix.yml")
matrix = yaml["matrix"]
defaults = matrix["defaults"]
VERSION_MANAGERS.each do |version_manager, config|
out = []
out << config[:env]
out << "rm -f .ruby-version"
out << "echo 'Using #{version_manager}'"
matrix["ruby"].each do |ruby|
ruby_version = ruby["ruby"]
out << "echo 'Switching to #{ruby_version}'"
# rubocop:disable Layout/LineLength
out << "#{config[:switch_command].call(ruby_version)} || { echo 'Switching Ruby failed'; exit 1; }"
out << "ruby -v"
out << "echo 'Compiling extension'"
out << "./script/bundler_wrapper exec rake extension:install"
out << "rm -f gemfiles/*.gemfile.lock"
gemset_for_ruby(ruby, matrix).each do |gem|
next unless included_for_ruby?(matrix, gem, ruby)
gemfile = gem["gem"]
out << "echo 'Bundling #{gemfile} in #{ruby_version}'"
rubygems = gem["rubygems"] || ruby["rubygems"] || defaults["rubygems"]
rubygems_version = "env _RUBYGEMS_VERSION=#{rubygems_version}" if rubygems
bundler = gem["bundler"] || ruby["bundler"] || defaults["bundler"]
bundler_version = "env _BUNDLER_VERSION=#{bundler}" if bundler
gemfile_env = "env BUNDLE_GEMFILE=gemfiles/#{gemfile}.gemfile"
out << "#{bundler_version} #{rubygems_version} ./script/install_deps"
out << "#{bundler_version} #{gemfile_env} ./script/bundler_wrapper install --quiet || { echo 'Bundling failed'; exit 1; }"
out << "echo 'Running #{gemfile} in #{ruby_version}'"
out << "#{bundler_version} #{gemfile_env} ./script/bundler_wrapper exec rspec || { echo 'Running specs failed'; exit 1; }"
end
# rubocop:enable Layout/LineLength
out << ""
end
out << "rm -f .ruby-version"
out << "echo 'Successfully ran specs for all environments'"
script = "bundle_and_spec_all_#{version_manager}"
FileUtils.rm_f(script)
File.write(script, out.join("\n"))
File.chmod(0o775, script)
puts "Generated #{script}"
end
end
end
def gemset_for_ruby(ruby, matrix)
gems = matrix["gems"]
if ruby["gems"]
# Only a specific gemset for this Ruby
selected_gems = matrix["gemsets"].fetch(ruby["gems"])
gems.select { |g| selected_gems.include?(g["gem"]) }
else
# All gems for this Ruby
gems
end
end
def included_for_ruby?(matrix, gem, ruby)
included_rubies = gem.dig("only", "ruby") || []
excluded_rubies = gem.dig("exclude", "ruby") || []
if included_rubies.any? && excluded_rubies.any?
raise "Both `only` and `exclude` config options for gem `#{gem["gem"]}` are configured. " \
"Only use one of the two config options."
end
if included_rubies.any?
# If this gem only runs on these specific Ruby version
included_rubies.each { |version| check_if_ruby_version_exists!(matrix, version) }
true if included_rubies.include?(ruby["ruby"])
else
# If this gem is excluded from running on this Ruby version
excluded_rubies.each { |version| check_if_ruby_version_exists!(matrix, version) }
true unless excluded_rubies.include?(ruby["ruby"])
end
end
def check_if_ruby_version_exists!(matrix, ruby_version)
return if matrix["ruby"].find { |ruby| ruby["ruby"] == ruby_version }
raise "Ruby version `#{ruby_version}` is not known by the build matrix."
end
end
namespace :build do
def base_gemspec
eval(File.read("appsignal.gemspec")) # rubocop:disable Security/Eval
end
def modify_base_gemspec(&block)
base_gemspec.tap(&block)
end
def define_build_task(task_name, base_gemspec, &block)
Gem::PackageTask.new(base_gemspec, &block)
rescue StandardError => e
puts "Warning: An error occurred defining `build:#{task_name}:gem` Rake task."
puts "This task will not be available."
if ENV["DEBUG"]
puts "#{e}: #{e.message}"
puts e.backtrace
else
puts "For more information, run the same command with `DEBUG=true`."
end
puts
end
namespace :ruby do
# Extension default set in `appsignal.gemspec`
define_build_task(:ruby, base_gemspec) { |_pkg| } # rubocop:disable Lint/EmptyBlock
end
namespace :jruby do
spec = modify_base_gemspec do |s|
s.platform = "java"
# Override extensions config with JRuby extension installer
# Default set in `appsignal.gemspec`
s.extensions = %w[ext/Rakefile]
s.add_dependency "ffi"
end
define_build_task(:jruby, spec) { |_pkg| } # rubocop:disable Lint/EmptyBlock
end
desc "Build all gem versions"
task :all => ["ruby:gem", "jruby:gem"]
desc "Clean up all gem build artifacts"
task :clean do
FileUtils.rm_rf File.expand_path("pkg", __dir__)
end
end
desc "Install the AppSignal gem, extension and all possible dependencies."
task :install => "extension:install" do
Bundler.with_clean_env do
gems_with_gemfiles.each do |gemfile|
system "bundle --gemfile gemfiles/#{gemfile}.gemfile"
end
end
end
task :spec_all_gemfiles do
Bundler.with_clean_env do
gems_with_gemfiles.each do |gemfile|
puts "Running tests for #{gemfile}"
unless system("env BUNDLE_GEMFILE=gemfiles/#{gemfile}.gemfile bundle exec rspec")
raise "Not successful"
end
end
end
end
task :console do
require "irb"
require "irb/completion"
require "appsignal"
Appsignal.configure(:console)
ARGV.clear
IRB.start
end
namespace :extension do
desc "Install the AppSignal gem extension"
task :install => :clean do
if RUBY_PLATFORM == "java"
system "cd ext && rake"
else
system "cd ext && ruby extconf.rb && make clean && make"
end
end
desc "Clean the AppSignal gem extension directory of installation artifacts"
task :clean do
system <<-COMMAND
cd ext &&
rm -f appsignal.bundle \
appsignal-agent \
appsignal.h \
appsignal_extension.o \
appsignal_extension.so \
appsignal_extension.bundle \
install.report \
libappsignal.* \
appsignal.version \
Makefile \
mkmf.log
COMMAND
end
end
begin
require "rspec/core/rake_task"
is_jruby = defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
excludes = []
excludes << "spec/lib/appsignal/extension/jruby_spec.rb" unless is_jruby
exclude_pattern = "--exclude-pattern=#{excludes.join(",")}" if excludes.any?
desc "Run the AppSignal gem test suite."
RSpec::Core::RakeTask.new :test do |t|
t.rspec_opts = "#{exclude_pattern} --format documentation"
end
namespace :test do
RSpec::Core::RakeTask.new :rspec_failure do |t|
t.rspec_opts = "#{exclude_pattern} --tag extension_installation_failure"
end
desc "Intentionally fail the extension installation"
task :prepare_failure do
# ENV var to make sure installation fails on purpurse
ENV["_TEST_APPSIGNAL_EXTENSION_FAILURE"] = "true"
# Run extension installation with intentional failure
`rake extension:install`
end
desc "Run the Appsignal gem test in an extension failure scenario"
task :failure => [:prepare_failure, :rspec_failure]
end
rescue LoadError
# When running rake install, there is no RSpec yet.
end
task :default => [:generate_bundle_and_spec_all, :spec_all_gemfiles]