forked from bloomberg/redis-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (49 loc) · 1.51 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
---
sudo: required
dist: trusty
language: generic
cache: bundler
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
services: docker
env:
matrix:
- INSTANCE=default-centos-7
- INSTANCE=default-centos-6
- INSTANCE=default-ubuntu-1604
- INSTANCE=default-ubuntu-1404
- INSTANCE=sentinel-centos-7
- INSTANCE=sentinel-centos-6
- INSTANCE=sentinel-ubuntu-1604
- INSTANCE=sentinel-ubuntu-1404
- INSTANCE=archive-centos-7
- INSTANCE=archive-centos-6
- INSTANCE=archive-ubuntu-1604
- INSTANCE=archive-ubuntu-1404
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 gem install kitchen-dokken
- /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 kitchen verify ${INSTANCE}
after_script:
- docker images
- docker ps -a
- cat .kitchen/logs/kitchen.log
matrix:
include:
- script: /opt/chefdk/embedded/bin/cookstyle
env: COOKSTYLE=1
- script: /opt/chefdk/embedded/bin/foodcritic . --exclude spec -f any
env: FOODCRITIC=1
- script: /opt/chefdk/embedded/bin/rspec --color --default-path test/spec
env: CHEFSPEC=1
notifications:
slack: bloomberg-rnd:BvYmxrV9xj902XWTRNrkLNkR