forked from jolicode/chef-cookbook-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
66 lines (66 loc) · 1.94 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_plugin: vagrant
platforms:
- name: ubuntu-12.04-chef11
driver_config:
box: opscode-ubuntu-12.04
box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_chef-11.2.0.box
require_chef_omnibus: 11.4.0
customize:
cpus: 2
memory: 1024
run_list:
- recipe[apt]
- name: ubuntu-12.04-chef10
driver_config:
box: opscode-ubuntu-12.04-chef10
box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_chef-10.18.2.box
customize:
cpus: 2
memory: 1024
run_list:
- recipe[apt]
- name: debian-6.0-chef11-dotdeb
driver_config:
box: opscode-debian-6
box_url: http://opscode-vm.s3.amazonaws.com/vagrant/opscode_debian-6.0.7_chef-11.2.0.box
require_chef_omnibus: 11.4.0
customize:
cpus: 2
memory: 1024
attributes:
jolicode-php:
dotdeb: true
run_list:
- recipe[apt]
- recipe[dotdeb::default]
- recipe[dotdeb::php54]
- name: centos-6.3-chef11
driver_config:
box: opscode-centos-6.3
box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_centos-6.3_chef-11.2.0.box
require_chef_omnibus: 11.4.0
customize:
cpus: 2
memory: 1024
suites:
- name: default
run_list:
- recipe[jolicode-php_test::default]
- recipe[jolicode-php_test::ext-apc]
- recipe[jolicode-php_test::ext-curl]
- recipe[jolicode-php_test::ext-dom]
- recipe[jolicode-php_test::ext-fpm]
- recipe[jolicode-php_test::ext-gd]
- recipe[jolicode-php_test::ext-imagick]
- recipe[jolicode-php_test::ext-intl]
- recipe[jolicode-php_test::ext-mbstring]
- recipe[jolicode-php_test::ext-mcrypt]
- recipe[jolicode-php_test::ext-mysql]
- recipe[jolicode-php_test::ext-pdo]
- recipe[jolicode-php_test::ext-pgsql]
- recipe[jolicode-php_test::ext-posix]
- recipe[jolicode-php_test::ext-twig]
- recipe[jolicode-php_test::ext-xdebug]
- recipe[jolicode-php_test::ext-zmq]
- recipe[minitest-handler]