forked from sous-chefs/nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
64 lines (60 loc) · 1.07 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
driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: amazon-linux
driver_config:
box: mvbcoding/awslinux
- name: centos-6
- name: centos-7
- name: debian-8
- name: debian-9
- name: fedora-27
- name: opensuse-leap-42
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: package
run_list:
- recipe[test::default]
- name: binary
run_list:
- recipe[test::binary]
- name: source
run_list:
- recipe[test::source]
excludes:
- centos-6
- name: npm
run_list:
- recipe[test::npm]
- name: npm_embedded
run_list:
- recipe[test::npm]
attributes:
nodejs:
npm:
install_method: embedded
- name: npm_source
run_list:
- recipe[test::npm]
attributes:
nodejs:
npm:
install_method: source
excludes:
- centos-6
- name: npm_packages
run_list: recipe[nodejs]
attributes:
nodejs:
npm_packages:
- name: express
- name: socket.io
version: 1.0.4
- name: express
action: uninstall