diff options
author | Josh Cooper <josh@puppet.com> | 2018-06-27 21:40:48 -0700 |
---|---|---|
committer | Josh Cooper <josh@puppet.com> | 2018-06-27 21:40:48 -0700 |
commit | c051e86b350329bc1a7cd1c9c239ec29212b8e56 (patch) | |
tree | 9541699e0d8764e335a25205041d4a7c70495dc3 /appveyor.yml | |
parent | b9263341547f13a6af09f748d9b9ac483b5d2030 (diff) | |
download | puppet-augeas_core-c051e86b350329bc1a7cd1c9c239ec29212b8e56.tar.gz puppet-augeas_core-c051e86b350329bc1a7cd1c9c239ec29212b8e56.tar.bz2 |
Module creation using pdk 1.5
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..5fd5e89 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,57 @@ +version: 1.1.x.{build} +skip_commits: + message: /^\(?doc\)?.*/ +clone_depth: 10 +init: + - SET + - 'mkdir C:\ProgramData\PuppetLabs\code && exit 0' + - 'mkdir C:\ProgramData\PuppetLabs\facter && exit 0' + - 'mkdir C:\ProgramData\PuppetLabs\hiera && exit 0' + - 'mkdir C:\ProgramData\PuppetLabs\puppet\var && exit 0' +environment: + matrix: + - + RUBY_VERSION: 24-x64 + CHECK: syntax lint + - + RUBY_VERSION: 24-x64 + CHECK: metadata_lint + - + RUBY_VERSION: 24-x64 + CHECK: rubocop + - + PUPPET_GEM_VERSION: ~> 4.0 + RUBY_VERSION: 21 + CHECK: spec + - + PUPPET_GEM_VERSION: ~> 4.0 + RUBY_VERSION: 21-x64 + CHECK: spec + - + PUPPET_GEM_VERSION: ~> 5.0 + RUBY_VERSION: 24 + CHECK: spec + - + PUPPET_GEM_VERSION: ~> 5.0 + RUBY_VERSION: 24-x64 + CHECK: spec +matrix: + fast_finish: true +install: + - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH% + - bundle install --jobs 4 --retry 2 --without system_tests + - type Gemfile.lock +build: off +test_script: + - bundle exec puppet -V + - ruby -v + - gem -v + - bundle -v + - bundle exec rake %CHECK% +notifications: + - provider: Email + to: + - nobody@nowhere.com + on_build_success: false + on_build_failure: false + on_build_status_changed: false |