Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / concat / appveyor.yml
1 ---
2 version: 1.1.x.{build}
3 branches:
4   only:
5     - master
6     - release
7 skip_commits:
8   message: /^\(?doc\)?.*/
9 clone_depth: 10
10 init:
11   - SET
12   - 'mkdir C:\ProgramData\PuppetLabs\code && exit 0'
13   - 'mkdir C:\ProgramData\PuppetLabs\facter && exit 0'
14   - 'mkdir C:\ProgramData\PuppetLabs\hiera && exit 0'
15   - 'mkdir C:\ProgramData\PuppetLabs\puppet\var && exit 0'
16 environment:
17   matrix:
18     -
19       RUBY_VERSION: 24-x64
20       CHECK: syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop
21     -
22       PUPPET_GEM_VERSION: ~> 5.0
23       RUBY_VERSION: 24
24       CHECK: parallel_spec
25     -
26       PUPPET_GEM_VERSION: ~> 5.0
27       RUBY_VERSION: 24-x64
28       CHECK: parallel_spec
29     -
30       PUPPET_GEM_VERSION: ~> 6.0
31       RUBY_VERSION: 25
32       CHECK: parallel_spec
33     -
34       PUPPET_GEM_VERSION: ~> 6.0
35       RUBY_VERSION: 25-x64
36       CHECK: parallel_spec
37     -
38       RUBY_VERSION: 25-x64
39       ACCEPTANCE: yes
40       TARGET_HOST: localhost
41     -
42       RUBY_VERSION: 25-x64
43       ACCEPTANCE: yes
44       TARGET_HOST: localhost
45       APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
46 for:
47 -
48   matrix:
49     only:
50       - ACCEPTANCE: yes
51   install:
52     - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
53     - bundle install --jobs 4 --retry 2
54     - type Gemfile.lock
55   test_script:
56      - bundle exec rake spec_prep
57      - bundle exec rake litmus:acceptance:localhost
58 install:
59   - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
60   - bundle install --jobs 4 --retry 2 --without system_tests
61   - type Gemfile.lock
62 build: off
63 test_script:
64   - bundle exec puppet -V
65   - ruby -v
66   - gem -v
67   - bundle -v
68   - bundle exec rake %CHECK%
69 notifications:
70   - provider: Email
71     to:
72       - nobody@nowhere.com
73     on_build_success: false
74     on_build_failure: false
75     on_build_status_changed: false