summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 3fe5e7b45683ae664fae3c1fbcd680f19b3a01ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
version: "master-{build}"

os: Visual Studio 2017
platform:
  - x64

cache:
  - vendor/bundle

configuration:
  - integration
  - functional
  - unit

environment:
  matrix:
    - ruby_version: "25-x64"

clone_folder: c:\projects\chef
clone_depth: 1

skip_commits:
  # version bumps by Expeditor happen as a separate commit after the merge, we can skip
  message: /Bump version to [0-9.]+ by Chef Expeditor/
  # if ONLY the files listed below are changed in a commit, skip
  files:
    - MAINTAINERS.md
    - MAINTAINERS.toml
    - CHANGELOG.md
    - RELEASE_NOTES.md

skip_tags: true
branches:
  only:
    - master
    - chef-14
    - chef-13

install:
  - systeminfo
  - winrm quickconfig -q
  - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
  - echo %PATH%
  - appveyor DownloadFile http://curl.haxx.se/ca/cacert.pem -FileName C:\cacert.pem
  - set SSL_CERT_FILE=C:\cacert.pem
  - SET BUNDLE_WITHOUT=server:docgen:pry:integration:ci
  - bundle config --local path vendor/bundle # use the cache we define above
  - bundle install || bundle install || bundle install
  - SET SPEC_OPTS=--format progress

build: off

before_test:
  - ruby --version
  - gem --version
  - bundler --version
  - bundle env

for:
  -
    matrix:
      only:
        - configuration: integration
    build_script:
      - bundle exec rake spec:integration
  -
    matrix:
      only:
        - configuration: functional
    build_script:
      - bundle exec rake spec:functional
  -
    matrix:
      only:
        - configuration: unit
    build_script:
      - bundle exec rake spec:unit
      - bundle exec rake component_specs