forked from chef-boneyard/chef-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
70 lines (62 loc) · 2.08 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
67
68
69
70
sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-precise to install the stable release
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=cron-ubuntu-1204
- INSTANCE=cron-ubuntu-1404
- INSTANCE=cron-ubuntu-1604
- INSTANCE=cron-centos-5
- INSTANCE=cron-centos-6
- INSTANCE=cron-centos-7
- INSTANCE=config-ubuntu-1204
- INSTANCE=config-ubuntu-1404
- INSTANCE=config-ubuntu-1604
- INSTANCE=config-centos-5
- INSTANCE=config-centos-6
- INSTANCE=config-centos-7
- INSTANCE=delete-validation-ubuntu-1204
- INSTANCE=delete-validation-ubuntu-1404
- INSTANCE=delete-validation-ubuntu-1604
- INSTANCE=delete-validation-centos-5
- INSTANCE=delete-validation-centos-6
- INSTANCE=delete-validation-centos-7
- INSTANCE=service-upstart-ubuntu-1204
- INSTANCE=service-upstart-ubuntu-1404
- INSTANCE=service-systemd-centos-7
- INSTANCE=service-systemd-opensuse-132
- INSTANCE=service-systemd-fedora-23
- INSTANCE=service-init-ubuntu-1204
- INSTANCE=service-init-ubuntu-1404
- INSTANCE=service-init-centos-5
- INSTANCE=service-init-centos-6
# Don't `bundle install`
install: echo "skip bundle install"
# Ensure we make ChefDK's Ruby the default
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.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
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
env: CHEFSPEC=1