40 lines
776 B
YAML
40 lines
776 B
YAML
sudo: required
|
|
dist: trusty
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- chef-current-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-debian-9
|
|
- INSTANCE=default-ubuntu-1604
|
|
- INSTANCE=default-ubuntu-1804
|
|
|
|
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 CHEF_VERSION=13.10.4 kitchen verify ${INSTANCE}
|
|
|
|
matrix:
|
|
include:
|
|
- script:
|
|
- chef exec delivery local all
|
|
env: UNIT_AND_LINT=1
|