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