Try using Travis CI
This commit is contained in:
parent
48b23e0825
commit
98af3eefa4
7
.travis.yml
Normal file
7
.travis.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
rvm: 1.9.3
|
||||||
|
notifications:
|
||||||
|
email:
|
||||||
|
- 'inkblot@movealong.org'
|
||||||
|
env:
|
||||||
|
- PUPPET_VERSION=3.3.0
|
||||||
|
- PUPPET_VERSION=3.4.0
|
||||||
15
Rakefile
Normal file
15
Rakefile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
require 'puppet-lint/tasks/puppet-lint'
|
||||||
|
|
||||||
|
Rake::Task[:lint].clear
|
||||||
|
PuppetLint::RakeTask.new :lint do |config|
|
||||||
|
config.fail_on_warnings
|
||||||
|
config.relative = true
|
||||||
|
config.ignore_paths = [ 'pkg/**/*.pp' ]
|
||||||
|
config.disable_checks = [
|
||||||
|
'80chars',
|
||||||
|
'class_parameter_defaults',
|
||||||
|
'documentation'
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
||||||
|
task :default => [ :lint ]
|
||||||
Loading…
Reference in New Issue
Block a user