blob: b7be639c1b2d8cc99bdd0ed776639aa5dbcf1033 (
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
|
version: "master-{build}"
os: Visual Studio 2017
platform:
- x64
cache:
- vendor/bundle
configuration:
- integration
- functional
- unit
environment:
matrix:
- ruby_version: "25-x64"
- ruby_version: "26-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:
- CHANGELOG.md
- RELEASE_NOTES.md
skip_tags: true
branches:
only:
- master
- chef-14
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
- bundle config --local path vendor/bundle # use the cache we define above
- bundle install --jobs=3 --retry=3 --without omnibus_package docgen chefstyle
- SET SPEC_OPTS=--format progress
- SET CHEF_LICENSE="accept-no-persist"
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
|