mirror of
https://github.com/saltstack-formulas/mysql-formula.git
synced 2025-04-16 17:50:27 +00:00
28 lines
598 B
YAML
28 lines
598 B
YAML
![]() |
language: ruby
|
||
|
|
||
|
rvm:
|
||
|
- 2.2.5
|
||
|
|
||
|
sudo: required
|
||
|
services: docker
|
||
|
|
||
|
env:
|
||
|
matrix:
|
||
|
- INSTANCE=default-ubuntu-1204
|
||
|
- INSTANCE=default-ubuntu-1404
|
||
|
- INSTANCE=default-ubuntu-1604
|
||
|
- INSTANCE=default-debian-7
|
||
|
- INSTANCE=default-debian-8
|
||
|
|
||
|
# https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142455888
|
||
|
before_script: sudo iptables -L DOCKER || sudo iptables -N DOCKER
|
||
|
|
||
|
install:
|
||
|
# setup ci for test formula
|
||
|
- export BUNDLE_GEMFILE=$PWD/Gemfile
|
||
|
- bundle install
|
||
|
|
||
|
script:
|
||
|
# Run unit tests
|
||
|
- KITCHEN_LOCAL_YAML=.kitchen.docker.yml bundle exec kitchen verify ${INSTANCE}
|