aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJosh Cooper <josh@puppet.com>2018-07-09 17:05:53 -0700
committerJosh Cooper <josh@puppet.com>2018-07-09 17:05:53 -0700
commit1c6ae8bfde5175c5d3512f5acb5352fda94a4801 (patch)
tree43d077f7a23f82639709bcb43d81c2e31139fb1c /appveyor.yml
parent9d96ddecea6367abee1aa77859848b0c158fca80 (diff)
downloadpuppet-hosts_core-1c6ae8bfde5175c5d3512f5acb5352fda94a4801.tar.gz
puppet-hosts_core-1c6ae8bfde5175c5d3512f5acb5352fda94a4801.tar.bz2
Initial pdk new module
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml52
1 files changed, 52 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..4a5b227
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,52 @@
+---
+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 metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop
+ -
+ PUPPET_GEM_VERSION: ~> 4.0
+ RUBY_VERSION: 21
+ CHECK: parallel_spec
+ -
+ PUPPET_GEM_VERSION: ~> 4.0
+ RUBY_VERSION: 21-x64
+ CHECK: parallel_spec
+ -
+ PUPPET_GEM_VERSION: ~> 5.0
+ RUBY_VERSION: 24
+ CHECK: parallel_spec
+ -
+ PUPPET_GEM_VERSION: ~> 5.0
+ RUBY_VERSION: 24-x64
+ CHECK: parallel_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