This repository was archived by the owner on Nov 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy path.travis.yml
60 lines (52 loc) · 1.54 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
sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-trusty to install the stable release
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-debian-7
- INSTANCE=default-debian-8
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-fedora-25
# - INSTANCE=default-opensuse-leap
- INSTANCE=lwrps-debian-7
- INSTANCE=lwrps-debian-8
- INSTANCE=lwrps-centos-6
- INSTANCE=lwrps-centos-7
- INSTANCE=lwrps-fedora-25
- INSTANCE=lwrps-ubuntu-1604
# - INSTANCE=lwrps-opensuse-leap
- INSTANCE=attributes-debian-7
- INSTANCE=attributes-debian-8
- INSTANCE=attributes-centos-6
- INSTANCE=attributes-centos-7
- INSTANCE=attributes-fedora-25
- INSTANCE=attributes-ubuntu-1404
- INSTANCE=attributes-ubuntu-1604
# - INSTANCE=attributes-opensuse-leap
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- chef gem install kitchen-dokken
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
matrix:
include:
- script:
- /opt/chefdk/bin/chef exec rake
env: UNIT_AND_LINT=1