-
Notifications
You must be signed in to change notification settings - Fork 340
/
Rakefile
77 lines (63 loc) · 2.35 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
# frozen_string_literal: true
require 'bundler'
Bundler::GemHelper.install_tasks
require './lib/license_finder/platform'
require 'rspec/core/rake_task'
desc 'Run all specs in spec/'
RSpec::Core::RakeTask.new(:spec) do |t|
t.fail_on_error = true
t.pattern = './spec/**/*_spec.rb'
t.rspec_opts = %w[--color]
end
namespace :features do
desc 'Run test tagged \'focus\''
RSpec::Core::RakeTask.new(:focus) do |t|
t.fail_on_error = true
t.pattern = './features/**/*_spec.rb'
opts = %w[--color --format d --tag focus]
opts += LicenseFinder::Platform.darwin? ? [] : %w[--tag ~ios]
t.rspec_opts = opts
end
end
desc 'Run all specs in features/'
RSpec::Core::RakeTask.new(:features) do |t|
t.fail_on_error = true
t.pattern = './features/**/*_spec.rb'
opts = %w[--color --format d]
opts += LicenseFinder::Platform.darwin? ? [] : %w[--tag ~ios]
t.rspec_opts = opts
end
desc 'Check for non-Ruby development dependencies.'
task :check_dependencies do
require './lib/license_finder'
satisfied = true
LicenseFinder::Scanner::PACKAGE_MANAGERS.each do |package_manager|
satisfied = false unless package_manager.new(project_path: Pathname.new('')).installed?(LicenseFinder::Logger.new(LicenseFinder::Logger::MODE_INFO))
end
$stdout.flush
exit 1 unless satisfied
end
desc 'Configure LF and LF PR pipeline'
task :update_pipeline, [:slack_url, :slack_channel] do |_, args|
slack_url = args[:slack_url]
slack_channel = args[:slack_channel]
unless slack_url || slack_channel
puts 'Warning: skipping slack notifications setup'
puts 'Warning: You should provide slack channel and url to receive slack notifications on build failures'
end
ruby_versions = %w[3.3.0 3.2.3 3.1.4 2.7.8]
params = []
params << "ruby_versions=#{ruby_versions.join(',')}"
params << "slack_url=#{slack_url}" if slack_url
params << "slack_channel=#{slack_channel}" if slack_channel
vars = params.join(' ')
cmd = "bash -c \"fly -t osl set-pipeline -n -p LicenseFinder --config <(erb #{vars} ci/pipelines/release.yml.erb)\""
system(cmd)
cmd = "bash -c \"fly -t osl set-pipeline -n -p LicenseFinder-pr --config <(erb #{vars} ci/pipelines/pull-request.yml.erb)\""
system(cmd)
end
task default: %i[spec features]
task spec: :check_dependencies
task features: :check_dependencies
task 'spec:focus': :check_dependencies
task 'features:focus': :check_dependencies