summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorHunter Haugen <hunter@puppet.com>2017-01-19 16:17:47 -0800
committerHunter Haugen <hunter@puppet.com>2017-01-24 11:13:55 -0800
commit1229d5a831995ddc2c9814f5104ea2a2c9df65a9 (patch)
tree2e22c5dfdba611449494acf6e6873d5bc6b28d66 /appveyor.yml
parent5aa8419c94a8c5005383f5a8948708ed8efd0e5f (diff)
(MODULES-4098) Sync the rest of the files
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..c87ed7c
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,40 @@
+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:
+ - PUPPET_GEM_VERSION: ~> 4.0
+ RUBY_VER: 21
+ - PUPPET_GEM_VERSION: ~> 4.0
+ RUBY_VER: 21-x64
+ - PUPPET_GEM_VERSION: ~> 4.0
+ RUBY_VER: 23
+ - PUPPET_GEM_VERSION: ~> 4.0
+ RUBY_VER: 23-x64
+ - PUPPET_GEM_VERSION: 4.2.3
+ RUBY_VER: 21-x64
+matrix:
+ fast_finish: true
+install:
+- SET PATH=C:\Ruby%RUBY_VER%\bin;%PATH%
+- bundle install --jobs 4 --retry 2 --without system_tests
+- type Gemfile.lock
+build: off
+test_script:
+- bundle exec puppet -V
+- ruby -v
+- bundle exec rake spec SPEC_OPTS='--format documentation'
+notifications:
+- provider: Email
+ to:
+ - nobody@nowhere.com
+ on_build_success: false
+ on_build_failure: false
+ on_build_status_changed: false