-
Notifications
You must be signed in to change notification settings - Fork 14
/
.travis.yml
37 lines (31 loc) · 960 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
addons:
apt:
sources:
- chef-stable-xenial
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
services: docker
env:
matrix:
- CHEF_VERSION=14 INSTANCE=cron-ubuntu-1604
- CHEF_VERSION=14 INSTANCE=cron-ubuntu-1804
- CHEF_VERSION=14 INSTANCE=cron-centos-6
- CHEF_VERSION=14 INSTANCE=cron-centos-7
- INSTANCE=default-ubuntu-1604
- INSTANCE=default-ubuntu-1804
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
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: CHEF_LICENSE=accept-no-persist KITCHEN_LOCAL_YAML=kitchen.dokken.yml CHEF_VERSION=${CHEF_VERSION} kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1