2014-04-23 18:29:49 +02:00
|
|
|
---
|
2018-09-29 21:41:26 +02:00
|
|
|
language: python
|
2016-09-25 22:50:37 +02:00
|
|
|
services: docker
|
2014-04-23 19:42:10 +02:00
|
|
|
|
2014-04-23 18:29:49 +02:00
|
|
|
env:
|
2018-09-29 21:41:26 +02:00
|
|
|
global:
|
|
|
|
- ROLE_NAME: php
|
|
|
|
matrix:
|
2020-03-06 16:25:03 +01:00
|
|
|
- MOLECULE_DISTRO: centos8
|
2018-09-29 21:41:26 +02:00
|
|
|
- MOLECULE_DISTRO: centos7
|
|
|
|
- MOLECULE_DISTRO: ubuntu1804
|
|
|
|
- MOLECULE_DISTRO: ubuntu1604
|
|
|
|
- MOLECULE_DISTRO: debian9
|
|
|
|
|
|
|
|
- MOLECULE_DISTRO: centos7
|
|
|
|
MOLECULE_PLAYBOOK: playbook-source.yml
|
|
|
|
|
|
|
|
install:
|
|
|
|
# Install test dependencies.
|
2020-02-20 21:23:58 +01:00
|
|
|
- pip install molecule yamllint ansible-lint docker
|
2018-09-29 21:41:26 +02:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
# Use actual Ansible Galaxy role name for the project directory.
|
|
|
|
- cd ../
|
|
|
|
- mv ansible-role-$ROLE_NAME geerlingguy.$ROLE_NAME
|
|
|
|
- cd geerlingguy.$ROLE_NAME
|
2016-09-14 23:22:10 +02:00
|
|
|
|
2014-04-23 18:29:49 +02:00
|
|
|
script:
|
2017-04-02 16:49:19 +02:00
|
|
|
# Run tests.
|
2018-09-29 21:41:26 +02:00
|
|
|
- molecule test
|
2017-05-15 06:10:58 +02:00
|
|
|
|
2016-02-08 21:09:43 +01:00
|
|
|
notifications:
|
|
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|