ansible-mysql/.travis.yml

41 lines
1.4 KiB
YAML
Raw Normal View History

env:
- PLATFORM='docker-stretch-default-master' ANSIBLE_VERSION='ansible>=2.5,<2.6'
- PLATFORM='docker-stretch-upstream-master' ANSIBLE_VERSION='ansible>=2.5,<2.6'
- PLATFORM='docker-stretch-upstream-galera-1' ANSIBLE_VERSION='ansible>=2.5,<2.6'
- PLATFORM='docker-stretch-default-master' ANSIBLE_VERSION='ansible>=2.6,<2.7'
- PLATFORM='docker-stretch-upstream-master' ANSIBLE_VERSION='ansible>=2.6,<2.7'
- PLATFORM='docker-stretch-upstream-galera-1' ANSIBLE_VERSION='ansible>=2.6,<2.7'
- PLATFORM='docker-stretch-default-master' ANSIBLE_VERSION='ansible>=2.7,<2.8'
- PLATFORM='docker-stretch-upstream-master' ANSIBLE_VERSION='ansible>=2.7,<2.8'
- PLATFORM='docker-stretch-upstream-galera-1' ANSIBLE_VERSION='ansible>=2.7,<2.8'
2016-09-25 17:47:36 +07:00
sudo: required
2016-09-23 22:54:35 +07:00
2016-09-25 18:28:30 +07:00
dist: trusty
language: python
2019-04-19 19:39:30 +07:00
python: 2.7
2016-09-25 18:28:30 +07:00
services:
- docker
before_install:
2018-02-27 14:13:21 +07:00
- wget https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.deb
- sudo dpkg -i vagrant_2.0.1_x86_64.deb
2017-06-28 21:27:36 +07:00
- vagrant plugin install vagrant-hostmanager
install:
- pip install "$ANSIBLE_VERSION"
2016-09-23 22:54:35 +07:00
script:
- VAGRANT_DEFAULT_PROVIDER=docker vagrant up $PLATFORM
- >
VAGRANT_DEFAULT_PROVIDER=docker vagrant provision $PLATFORM
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
- VAGRANT_DEFAULT_PROVIDER=docker vagrant status
2016-09-23 22:54:35 +07:00
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/