forked from appsignal/appsignal-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
408 lines (360 loc) · 12.3 KB
/
Rakefile
File metadata and controls
408 lines (360 loc) · 12.3 KB
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
require "bundler"
require "rubygems/package_task"
require "fileutils"
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 env_map(key, value)
{
"name" => key,
"value" => value
}
end
def build_task(matrix, ruby_version, type = nil)
{
"name" => "Ruby #{ruby_version}#{type ? " - #{type}" : nil}",
"dependencies" => ["Validation"],
"task" => {
"prologue" => matrix["prologue"].merge(
"commands" => matrix["prologue"]["commands"] + [
"./support/bundler_wrapper exec rake extension:install"
]
),
"epilogue" => matrix["epilogue"],
"jobs" => []
}
}
end
def gems_with_gemfiles
YAML.load_file("build_matrix.yml")["matrix"]["gems"].map { |g| g["gem"] }.freeze
end
namespace :build_matrix do
namespace :semaphore do
task :generate do
yaml = YAML.load_file("build_matrix.yml")
matrix = yaml["matrix"]
defaults = matrix["defaults"]
semaphore = yaml["semaphore"]
builds = []
matrix["ruby"].each do |ruby|
ruby_version = ruby["ruby"]
ruby_primary_block = build_task(matrix, ruby_version)
ruby_secondary_block = build_task(matrix, ruby_version, "Gems").tap do |t|
t["dependencies"] = ["Ruby #{ruby_version}"]
end
gemset_for_ruby(ruby, matrix).each do |gem|
next if excluded_for_ruby?(gem, ruby)
env = matrix["env_vars"] + [
env_map("RUBY_VERSION", ruby_version),
env_map("GEMSET", gem["gem"]),
env_map("BUNDLE_GEMFILE", "gemfiles/#{gem["gem"]}.gemfile")
]
rubygems = gem["rubygems"] || ruby["rubygems"] || defaults["rubygems"]
env << env_map("_RUBYGEMS_VERSION", rubygems) if rubygems
bundler = gem["bundler"] || ruby["bundler"] || defaults["bundler"]
env << env_map("_BUNDLER_VERSION", bundler) if bundler
job = {
"name" => "Ruby #{ruby_version} for #{gem["gem"]}",
"env_vars" => env + ruby.fetch("env_vars", []),
"commands" => [
"./support/bundler_wrapper exec rake test",
"./support/bundler_wrapper exec rake test:failure"
]
}
if gem["gem"] == "no_dependencies"
ruby_primary_block["task"]["jobs"] << job
else
ruby_secondary_block["task"]["jobs"] << job
end
end
builds << ruby_primary_block
if ruby_secondary_block["task"]["jobs"].count.nonzero?
builds << ruby_secondary_block
end
end
semaphore["blocks"] += builds
header = "# DO NOT EDIT\n" \
"# This is a generated file by the `rake build_matrix:semaphore:generate` task.\n" \
"# See `build_matrix.yml` for the build matrix.\n" \
"# Generate this file with `rake build_matrix:semaphore:generate`.\n"
generated_yaml = header + YAML.dump(semaphore)
File.write(".semaphore/semaphore.yml", generated_yaml)
puts "Generated `.semaphore/semaphore.yml`"
puts "Task count: #{builds.length}"
puts "Job count: #{builds.sum { |block| block["task"]["jobs"].count }}"
end
task :validate => :generate do
output = `git status`
if output.include? ".semaphore/semaphore.yml"
puts "The `.semaphore/semaphore.yml` is modified. The changes were not committed."
puts "Please run `rake build_matrix:semaphore: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}'"
out << "#{config[:switch_command].call(ruby_version)} || { echo 'Switching Ruby failed'; exit 1; }"
out << "ruby -v"
out << "echo 'Compiling extension'"
out << "./support/bundler_wrapper exec rake extension:install"
out << "rm -f gemfiles/*.gemfile.lock"
gemset_for_ruby(ruby, matrix).each do |gem|
next if excluded_for_ruby?(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} ./support/install_deps"
out << "#{bundler_version} #{gemfile_env} ./support/bundler_wrapper install --quiet || { echo 'Bundling failed'; exit 1; }"
out << "echo 'Running #{gemfile} in #{ruby_version}'"
out << "#{bundler_version} #{gemfile_env} ./support/bundler_wrapper exec rspec || { echo 'Running specs failed'; exit 1; }"
end
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.open(script, "w") do |file|
file.write out.join("\n")
end
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 excluded_for_ruby?(gem, ruby)
(gem.dig("exclude", "ruby") || []).include?(ruby["ruby"])
end
end
namespace :build do
def base_gemspec
eval(File.read("appsignal.gemspec")) # rubocop:disable Security/Eval
end
def modify_base_gemspec
base_gemspec.tap do |s|
yield s
end
end
def define_build_task(task_name, base_gemspec, &block)
Gem::PackageTask.new(base_gemspec, &block)
rescue StandardError => error
puts "Warning: An error occurred defining `build:#{task_name}:gem` Rake task."
puts "This task will not be availble."
if ENV["DEBUG"]
puts "#{error}: #{error.message}"
puts error.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| }
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| }
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", __FILE__)
end
end
namespace :publish do
VERSION_FILE = "lib/appsignal/version.rb".freeze
CHANGELOG_FILE = "CHANGELOG.md".freeze
def changes
git_status_to_array(`git status -s -u`)
end
def git_status_to_array(changes)
changes.split("\n").each { |change| change.gsub!(/^.. /, "") }
end
def current_branch
`git rev-parse --abbrev-ref HEAD`.chomp
end
task :check_requirements do
unless changes.empty?
puts "ERROR: There should be no uncommitted file changes."
exit 1
end
unless ENV["EDITOR"]
puts "ERROR: $EDITOR environment variable should be set."
exit 1
end
end
task :configure_version do
puts "\n# Configuring new gem version"
system "$EDITOR #{VERSION_FILE}"
unless changes.member?(VERSION_FILE)
puts "ERROR: Please actually change the gem version in: #{VERSION_FILE}"
exit 1
end
puts "\n# Updating the changelog"
system "$EDITOR #{CHANGELOG_FILE}"
end
task :push_gem_packages do
puts "\n# Pushing gem packages"
Dir.chdir("#{File.dirname(__FILE__)}/pkg") do
Dir["*.gem"].each do |gem_package|
puts "## Publishing gem package: #{gem_package}"
result = system "gem push #{gem_package}"
raise "Failed to Push gem" unless result
end
end
end
task :tag_and_push_version do
# Make sure to load the new version number
Appsignal.send(:remove_const, :VERSION)
load File.expand_path(VERSION_FILE)
version = "v#{Appsignal::VERSION}"
begin
puts `git commit -am 'Bump to #{version} [ci skip]'`
puts "# Creating tag #{version}"
puts `git tag #{version}`
puts `git push origin #{version}`
puts `git push origin #{current_branch}`
rescue
puts "ERROR: Tag '#{version}' already exists"
exit 1
end
end
task :build => "build:clean" do
# Shell out to build so the new version is loaded in the gemspec.
`rake build:all`
end
end
task :publish => [
"publish:check_requirements",
"publish:configure_version",
"publish:build",
"publish:push_gem_packages",
"publish:tag_and_push_version"
]
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.config = Appsignal::Config.new(".", :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
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 # rubocop:disable Lint/HandleExceptions
# When running rake install, there is no RSpec yet.
end
task :default => [:generate_bundle_and_spec_all, :spec_all_gemfiles]