summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/stdlib/appveyor.yml
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-09-20 14:49:52 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-09-20 14:49:52 +0200
commit774cf89157a6c5af2566d98607a8b9aa655e33b0 (patch)
treecc7a73cb9e941b0338771653bdc301c80f2e61c7 /code/environments/production/modules/stdlib/appveyor.yml
parent9513b93a992470e21e387db1451fa4fd21ffc5d6 (diff)
downloadpuppet.DEV-774cf89157a6c5af2566d98607a8b9aa655e33b0.tar.gz
puppet.DEV-774cf89157a6c5af2566d98607a8b9aa655e33b0.tar.bz2
puppet.DEV-774cf89157a6c5af2566d98607a8b9aa655e33b0.zip
Bundle puppetlabs-stdlib 4.25.1.
Diffstat (limited to 'code/environments/production/modules/stdlib/appveyor.yml')
-rw-r--r--code/environments/production/modules/stdlib/appveyor.yml57
1 files changed, 57 insertions, 0 deletions
diff --git a/code/environments/production/modules/stdlib/appveyor.yml b/code/environments/production/modules/stdlib/appveyor.yml
new file mode 100644
index 0000000..5fd5e89
--- /dev/null
+++ b/code/environments/production/modules/stdlib/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