15 lines
225 B
YAML
15 lines
225 B
YAML
sudo: required
|
|
language: python
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- bundle install
|
|
|
|
env:
|
|
matrix:
|
|
- INSTANCE: consul-ubuntu-1404
|
|
- INSTANCE: consul-centos-7
|
|
|
|
script:
|
|
- bundle exec kitchen verify ${INSTANCE}
|