20 lines
274 B
YAML
20 lines
274 B
YAML
sudo: required
|
|
cache: bundler
|
|
language: ruby
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- bundle install
|
|
|
|
env:
|
|
matrix:
|
|
- INSTANCE: postfix-debian-9
|
|
- INSTANCE: postfix-ubuntu-1804
|
|
- INSTANCE: postfix-centos-7
|
|
|
|
script:
|
|
- bundle exec kitchen verify ${INSTANCE}
|
|
|