-
Notifications
You must be signed in to change notification settings - Fork 375
/
Appraisals
95 lines (79 loc) · 2.56 KB
/
Appraisals
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
# Do not edit this file directly.
#
# The dependency management has been migrated to `tasks/dependency.rake`
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'datadog/version'
module DisableBundleCheck
def check_command
['bundle', 'exec', 'false']
end
end
::Appraisal::Appraisal.prepend(DisableBundleCheck) if ['true', 'y', 'yes', '1'].include?(ENV['APPRAISAL_SKIP_BUNDLE_CHECK'])
alias original_appraise appraise
REMOVED_GEMS = {
:check => [
'rbs',
'steep',
'standard',
],
:dev => [
'ruby-lsp',
],
}
def appraise(group, &block)
# Specify the environment variable APPRAISAL_GROUP to load only a specific appraisal group.
if ENV['APPRAISAL_GROUP'].nil? || ENV['APPRAISAL_GROUP'] == group
original_appraise(group) do
instance_exec(&block)
REMOVED_GEMS.each do |group_name, gems|
group(group_name) do
gems.each do |gem_name|
# appraisal 2.2 doesn't have remove_gem, which applies to ruby 2.1 and 2.2
remove_gem gem_name if respond_to?(:remove_gem)
end
end
end
end
end
end
# Builds a matrix of versions to test for a given integration
#
# `range`: the range of versions to test
# `gem` : optional, gem name to test (gem name can be different from the integration name)
# `min` : optional, minimum version to test
# `meta` : optional, additional metadata (development dependencies, etc.) for the group
def build_coverage_matrix(integration, range, gem: nil, min: nil, meta: {})
gem ||= integration
if min
appraise "#{integration}-min" do
gem gem, "= #{min}"
meta.each { |k, v| v ? gem(k, v) : gem(k) }
end
end
range.each do |n|
appraise "#{integration}-#{n}" do
gem gem, "~> #{n}"
meta.each { |k, v| v ? gem(k, v) : gem(k) }
end
end
appraise "#{integration}-latest" do
# The latest group declares dependencies without version constraints,
# still requires being updated to pick up the next major version and
# committing the changes to lockfiles.
gem gem
meta.each { |k, v| v ? gem(k, v) : gem(k) }
end
end
major, minor, = if defined?(RUBY_ENGINE_VERSION)
Gem::Version.new(RUBY_ENGINE_VERSION).segments
else
# For Ruby < 2.3
Gem::Version.new(RUBY_VERSION).segments
end
ruby_runtime = "#{RUBY_ENGINE}-#{major}.#{minor}"
instance_eval IO.read("appraisal/#{ruby_runtime}.rb")
appraisals.each do |appraisal|
appraisal.name.prepend("#{ruby_runtime}-")
end
# vim: ft=ruby