-
Notifications
You must be signed in to change notification settings - Fork 52
/
kitchen.yml
66 lines (62 loc) · 1.6 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
driver:
name: vagrant
customize:
cpus: 2
memory: 4096
provisioner:
name: chef_zero
product_name: chef
product_version: latest
channel: current
chef_license: accept-no-persist
platforms:
- name: centos-6
run_list: yum-epel::default
- name: centos-7
run_list: yum-epel::default
- name: centos-8
run_list: yum-epel::default
- name: debian-9
run_list: apt::default
- name: debian-10
run_list: apt::default
- name: freebsd-11
run_list: freebsd::portsnap
- name: ubuntu-16.04
run_list: apt::default
- name: ubuntu-18.04
run_list: apt::default
#
# The following (private) boxes are shared via Atlas. Please note this
# requires adding your Atlas account to the `Chef` org and will
# require a `vagrant login`.
#
# The Mac OS X boxes are VMware only also. You can enable VMware Fusion
# as the default provider by copying `.kitchen.local.yml.vmware.example`
# over to `.kitchen.local.yml`.
#
- name: macosx-10.10
driver:
box: chef/macosx-10.10 # private
- name: macosx-10.11
driver:
box: chef/macosx-10.11 # private
# By adding an `i386` to the name `OMNIBUS_WINDOWS_ARCH` will be
# configured correctly to force Omnibus to 32-bit build mode.
- name: windows-server-2012r2-i386
driver:
box: tas50/windows_2012r2
- name: windows-server-2012r2
driver:
box: tas50/windows_2012r2
- name: windows-server-2016-standard
driver:
box: tas50/windows_2016
suites:
- name: default
run_list: omnibus::default
#
# Build
#
- name: omnibus_build_execute
run_list: omnibus_build::execute