-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
66 lines (57 loc) · 1.86 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
61
62
63
64
65
66
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-ubuntu-1404
- INSTANCE=default-ubuntu-1204
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=create-ubuntu-1404
- INSTANCE=create-ubuntu-1204
- INSTANCE=create-centos-6
- INSTANCE=create-centos-7
- INSTANCE=delete-ubuntu-1404
- INSTANCE=delete-ubuntu-1204
- INSTANCE=delete-centos-6
- INSTANCE=delete-centos-7
- INSTANCE=list-ubuntu-1404
- INSTANCE=list-ubuntu-1204
- INSTANCE=list-centos-6
- INSTANCE=list-centos-7
- INSTANCE=search-ubuntu-1404
- INSTANCE=search-ubuntu-1204
- INSTANCE=search-centos-6
- INSTANCE=search-centos-7
before_script:
- 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
- sudo chef gem install kitchen-dokken
- chef exec bundle install --jobs=3 --retry=3
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/chef exec kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec rake setup_test_environment
- "./.travis_install.sh"
env: UNIT_AND_LINT=1
notifications:
slack:
secure: O3w/D2xUxgWwKY6aRiLP0KvRnUDXS7t9bGzQELo+d6KxGXRhf3mo32FeKKI2MdIVnZJf+nV+/5eIskH7VtcaW+EgS71npLs4NQBrqM5TR3J0gkRoYXGvH8f7VgXtHc3NbrHwc2eCLsacEam4BFHlJQqACRfWLbnS/186gEoLb3o=
on_success: change
on_failure: always