-
Notifications
You must be signed in to change notification settings - Fork 290
/
Rakefile
108 lines (95 loc) · 3.63 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
require 'json'
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
require 'puppet_blacksmith/rake_tasks' if Bundler.rubygems.find_name('puppet-blacksmith').any?
require 'github_changelog_generator/task' if Bundler.rubygems.find_name('github_changelog_generator').any?
# Puppet Strings (Documentation generation from inline comments)
# See: https://github.com/puppetlabs/puppet-strings#rake-tasks
require 'puppet-strings/tasks' if Bundler.rubygems.find_name('puppet-strings').any?
exclude_paths = [
"pkg/**/*",
"vendor/**/*",
"spec/**/*",
]
PuppetLint.configuration.send("disable_80chars")
PuppetLint.configuration.send("disable_140chars")
PuppetLint.configuration.ignore_paths = exclude_paths
PuppetLint.configuration.relative = true
desc "Run acceptance tests"
RSpec::Core::RakeTask.new(:acceptance) do |t|
t.pattern = 'spec/acceptance'
end
desc 'Validate manifests, templates, ruby files and shell scripts'
task :sensu_validate do
# lib/* gets checked by puppetlabs_spec_helper, though it skips spec entirely
puts "\nValidating ruby files ignored by puppetlabs_spec_helper (Vagrantfile', 'spec/**/*.rb)"
Dir['Vagrantfile', 'spec/**/*.rb'].each do |ruby_file|
sh "ruby -c #{ruby_file}" unless ruby_file =~ /spec\/fixtures/
end
puts "\nValidating shell scripts (**/.*.sh)"
Dir['**/*.sh'].each do |shell_script|
sh "bash -n #{shell_script}" unless shell_script =~ /spec\/fixtures/
end
puts "\nValidating JSON files (spec/fixtures/unit/**/*.json)"
Dir['spec/fixtures/unit/**/*.json'].each do |json_file|
puts json_file
file = File.read(json_file)
JSON.parse(file)
end
end
desc 'Alias for strings:generate'
task :doc => ['strings:generate']
desc 'Generate REFERENCE.md'
task :reference => ['strings:generate:reference']
namespace :acceptance do
desc 'Run acceptance tests against current code for Windows'
RSpec::Core::RakeTask.new(:windows) do |t|
t.pattern = 'spec/acceptance/windows_spec.rb'
end
end
def future_release
return unless (Rake.application.top_level_tasks.include?("changelog") || Rake.application.top_level_tasks.include?("release"))
returnVal = "v%s" % JSON.load(File.read('metadata.json'))['version']
raise "unable to find the future_release (version) in metadata.json" if returnVal.nil?
puts "future_release:#{returnVal}"
returnVal
end
if Bundler.rubygems.find_name('github_changelog_generator').any?
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake.application.top_level_tasks.include? "changelog" and ENV['CHANGELOG_GITHUB_TOKEN'].nil?
config.user = 'sensu'
config.project = 'sensu-puppet'
config.since_tag = 'v3.0.0'
config.future_release = "#{future_release}"
config.issues = false
config.max_issues = 100
config.exclude_labels = ["sensu v2","sensu v1"]
config.add_pr_wo_labels = true
config.merge_prefix = "### Merged Pull Requests"
config.configure_sections = {
"Changed" => {
"prefix" => "### Changed",
"labels" => ["breaking-change"],
},
"Added" => {
"prefix" => "### Added",
"labels" => ["feature", "enhancement"],
},
"Fixed" => {
"prefix" => "### Fixed",
"labels" => ["bugfix","bug"],
},
}
end
end
namespace :release do
desc "Release commit"
task :commit do
sh "git add CHANGELOG.md"
sh "git add REFERENCE.md"
sh "git add metadata.json"
sh "git commit -m 'Release #{future_release}'"
end
end
desc "Release new module version"
task :release => [:changelog, :reference, "release:commit"]