-
Notifications
You must be signed in to change notification settings - Fork 15
/
.travis.yml
39 lines (32 loc) · 1014 Bytes
/
.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
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"
services: docker
env:
matrix:
- INSTANCE=default-centos-7
- INSTANCE=nginx-centos-7
- INSTANCE=default-ubuntu-1604
- INSTANCE=nginx-ubuntu-1604
before_script:
# https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} -l debug
matrix:
include:
- script:
- /opt/chefdk/bin/chef exec rake style
env:
- UNIT_AND_LINT=1
- CHEF_LICENSE=accept