This repository has been archived by the owner on Sep 26, 2020. It is now read-only.
forked from sous-chefs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
135 lines (116 loc) · 2.59 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<%
dists_with_51 = %w(centos-6)
dists_with_55 = %w(centos-6 centos-7 debian-7 debian-8 ubuntu-14.04)
dists_with_56 = %w(centos-6 centos-7 fedora-25 ubuntu-14.04 opensuse-leap amazon-linux)
dists_with_57 = %w(centos-6 centos-7 fedora-25 ubuntu-16.04)
%>
---
driver:
name: vagrant
customize:
memory: 1024
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: centos-6
driver:
box: bento/centos-6
run_list:
- recipe[selinux::disabled]
- recipe[mysql_test::yum_repo]
- name: centos-7
driver:
box: bento/centos-7
run_list:
- recipe[selinux::disabled]
- recipe[mysql_test::yum_repo]
- name: debian-7
driver:
box: bento/debian-7.11
- name: debian-8
driver:
box: bento/debian-8.8
- name: fedora-26
driver:
box: bento/fedora-25
run_list:
- recipe[selinux::disabled]
- recipe[mysql_test::yum_repo]
- name: opensuse-leap
driver:
box: bento/opensuse-leap-42.2
- name: ubuntu-14.04
driver:
box: bento/ubuntu-14.04
- name: ubuntu-16.04
driver:
box: bento/ubuntu-16.04
- name: amazonlinux
driver_config:
box: mvbcoding/awslinux
suites:
#
# client
#
- name: installation_client_package-51
run_list:
- recipe[mysql_test::installation_client]
attributes:
mysql:
version: '5.1'
includes: <%= dists_with_51 %>
- name: installation_client_package-55
run_list:
- recipe[mysql_test::installation_client]
attributes:
mysql:
version: '5.5'
includes: <%= dists_with_55 %>
- name: installation_client_package-56
run_list:
- recipe[mysql_test::installation_client]
attributes:
mysql:
version: '5.6'
includes: <%= dists_with_56 %>
- name: installation_client_package-57
run_list:
- recipe[mysql_test::installation_client]
attributes:
mysql:
version: '5.7'
includes: <%= dists_with_57 %>
#
# server smoke
#
- name: smoke51
run_list:
- recipe[mysql_test::smoke]
attributes:
mysql:
version: '5.1'
includes: <%= dists_with_51 %>
- name: smoke55
run_list:
- recipe[mysql_test::smoke]
attributes:
mysql:
version: '5.5'
includes: <%= dists_with_55 %>
- name: smoke56
run_list:
- recipe[mysql_test::smoke]
attributes:
mysql:
version: '5.6'
includes: <%= dists_with_56 %>
- name: smoke57
run_list:
- recipe[mysql_test::smoke]
attributes:
mysql:
version: '5.7'
includes: <%= dists_with_57 %>