-
Notifications
You must be signed in to change notification settings - Fork 19
/
Rakefile
36 lines (29 loc) · 795 Bytes
/
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
#!/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 --fail-level E'
end
# Deploy task
desc 'Deploy to chef server and pin to environment'
task :deploy do
sh 'berks upload'
sh 'berks apply ci'
end
# share cookbook to Chef community site
desc 'Share cookbook to community site'
task :share do
sh 'knife cookbook site share krb5 other'
end
# default tasks are quick, commit tests
task :default => %w(foodcritic rubocop chefspec)
# jenkins tasks format for metric tracking
task :jenkins => %w(foodcritic rubocop chefspec)