forked from criteo-cookbooks/ms_dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
44 lines (40 loc) · 1006 Bytes
/
.kitchen.yml
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
driver:
name: vagrant
customize:
cpus: 2
memory: 4096
transport:
name: winrm
elevated: true
provisioner:
name: chef_zero
deprecations_as_errors: true
retry_on_exit_code:
- 35 # 35 is the exit code signaling that the node is rebooting
max_retries: 1
client_rb:
exit_status: :enabled # Opt-in to the standardized exit codes
client_fork: false # Forked instances don't return the real exit code
platforms:
- name: windows-7
driver_config:
box: chef/windows-7-professional
- name: windows-8.1
driver_config:
box: chef/windows-8.1-professional
- name: windows-2008r2
driver_config:
box: chef/windows-server-2008r2-standard
- name: windows-2012r2
driver_config:
box: chef/windows-server-2012r2-standard
suites:
- name: dotnet2
run_list:
- recipe[ms_dotnet::ms_dotnet2]
- name: dotnet3
run_list:
- recipe[ms_dotnet::ms_dotnet3]
- name: dotnet4
run_list:
- recipe[ms_dotnet::ms_dotnet4]