2016-02-09 06:01:57 +01:00
|
|
|
---
|
2018-09-26 05:11:49 +02:00
|
|
|
language: python
|
2016-09-25 21:45:34 +02:00
|
|
|
services: docker
|
2015-12-13 21:06:12 +01:00
|
|
|
|
2014-04-22 14:39:07 +02:00
|
|
|
env:
|
2018-09-26 05:11:49 +02:00
|
|
|
global:
|
|
|
|
- ROLE_NAME: apache
|
|
|
|
matrix:
|
2019-12-11 05:44:24 +01:00
|
|
|
- MOLECULE_DISTRO: centos8
|
2018-09-26 05:11:49 +02:00
|
|
|
- MOLECULE_DISTRO: centos7
|
|
|
|
- MOLECULE_DISTRO: centos6
|
|
|
|
- MOLECULE_DISTRO: ubuntu1804
|
|
|
|
- MOLECULE_DISTRO: ubuntu1604
|
2019-07-23 21:34:34 +02:00
|
|
|
- MOLECULE_DISTRO: debian10
|
2018-09-26 05:11:49 +02:00
|
|
|
- MOLECULE_DISTRO: debian9
|
2014-04-23 19:59:07 +02:00
|
|
|
|
2020-08-12 21:52:03 +02:00
|
|
|
before_install:
|
|
|
|
# Upgrade Docker to work with docker-py.
|
|
|
|
- curl https://gist.githubusercontent.com/geerlingguy/ce883ad4aec6a5f1187ef93bd338511e/raw/36612d28981d92863f839c5aefe5b7dd7193d6c6/travis-ci-docker-upgrade.sh | sudo bash
|
|
|
|
|
2018-09-26 05:11:49 +02:00
|
|
|
install:
|
|
|
|
# Install test dependencies.
|
2020-10-16 00:01:59 +02:00
|
|
|
- pip install molecule[docker] yamllint ansible-lint docker
|
2018-09-26 05:11:49 +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
|
2015-12-13 21:06:12 +01:00
|
|
|
|
2018-09-26 05:11:49 +02:00
|
|
|
script:
|
2017-04-02 05:41:34 +02:00
|
|
|
# Run tests.
|
2018-09-26 05:11:49 +02:00
|
|
|
- molecule test
|
2015-12-12 11:29:05 +01:00
|
|
|
|
2016-02-01 19:21:26 +01:00
|
|
|
notifications:
|
2016-02-08 20:50:39 +01:00
|
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|