forked from jbehrends/cookbook-snmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
49 lines (40 loc) · 1.19 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
#!/usr/bin/env rake
# chefspec task against spec/*_spec.rb
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:chefspec)
# foodcritic rake task
desc 'Foodcritic linter'
task :foodcritic do
sh 'foodcritic -f correctness .'
end
# rubocop rake task
desc 'Ruby style guide linter'
task :rubocop do
sh 'rubocop'
end
# rubocop jenkins rake task
desc 'Ruby style guide - checkformat output'
task :rubocop_checkformat do
sh 'rubocop --require rubocop/formatter/checkstyle_formatter --format Rubocop::Formatter::CheckstyleFormatter > checkstyle.xml'
end
# test-kitchen task
begin
require 'kitchen/rake_tasks'
Kitchen::RakeTasks.new
rescue LoadError
puts '>>>>> Kitchen gem not loaded, omitting tasks' unless ENV['CI']
end
# Deploy task
desc 'Deploy to chef server and pin to environment'
task :deploy do
sh 'berks upload'
sh 'berks apply ci'
end
desc 'erubis format check'
task :erbcheck do
sh "erubis -x -T '-' templates/default/*.erb | ruby -c"
end
# default tasks are quick, commit tests
task :default => ['foodcritic', 'rubocop', 'chefspec', 'erbcheck']
# jenkins tasks, use checkformat for tracking results
task :jenkins => ['foodcritic', 'rubocop_checkformat', 'chefspec', 'erbcheck']