forked from sous-chefs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
69 lines (61 loc) · 1.94 KB
/
.travis.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
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
global:
- KITCHEN_YAML=.kitchen.yml
- KITCHEN_LOCAL_YAML=.kitchen.dokken.yml
matrix:
- INSTANCE=smoke51-centos-6
- INSTANCE=smoke55-centos-6
- INSTANCE=smoke55-centos-7
- INSTANCE=smoke55-debian-7
- INSTANCE=smoke55-debian-8
- INSTANCE=smoke55-ubuntu-1404
- INSTANCE=smoke56-centos-6
- INSTANCE=smoke56-centos-7
#- INSTANCE=smoke56-fedora-24
- INSTANCE=smoke56-ubuntu-1404
- INSTANCE=smoke56-opensuse-leap
- INSTANCE=smoke57-centos-6
- INSTANCE=smoke57-centos-7
#- INSTANCE=smoke57-fedora-24
- INSTANCE=smoke57-ubuntu-1604
- INSTANCE=installation-client-package-51-centos-6
- INSTANCE=installation-client-package-55-centos-6
- INSTANCE=installation-client-package-55-centos-7
- INSTANCE=installation-client-package-55-debian-7
- INSTANCE=installation-client-package-55-debian-8
- INSTANCE=installation-client-package-55-ubuntu-1404
- INSTANCE=installation-client-package-56-centos-6
- INSTANCE=installation-client-package-56-centos-7
#- INSTANCE=installation-client-package-56-fedora-24
- INSTANCE=installation-client-package-56-ubuntu-1404
- INSTANCE=installation-client-package-56-opensuse-leap
- INSTANCE=installation-client-package-57-centos-6
- INSTANCE=installation-client-package-57-centos-7
#- INSTANCE=installation-client-package-57-fedora-24
- INSTANCE=installation-client-package-57-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1