-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
32 lines (32 loc) · 834 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
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
global:
- secure: SRXrFQgm+kRZ0VsW2uO3yJLfe7a3DnlpivUgm460HNedSMHdiBqvQyFYSQ/5+KZyUYohUqizMHH7h0h+tdOvmS1nLHAOE4EMfTHV6LlNL5ZQNPQLDedlzQXduk/1UCoCS3v2qi+GFeK7LNm70PWM7CjryCtjEmu9/IMUKlMXLdk=
matrix:
- 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: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1