2014-11-12 21:21:21 +01:00
|
|
|
---
|
2018-09-26 03:24:48 +02:00
|
|
|
language: python
|
2016-09-25 22:50:11 +02:00
|
|
|
services: docker
|
2014-11-12 21:21:21 +01:00
|
|
|
|
|
|
|
env:
|
2018-09-26 04:01:50 +02:00
|
|
|
global:
|
|
|
|
- ROLE_NAME: nfs
|
|
|
|
matrix:
|
2020-07-13 23:21:16 +02:00
|
|
|
- MOLECULE_DISTRO: centos8
|
2018-09-26 04:01:50 +02:00
|
|
|
- MOLECULE_DISTRO: centos7
|
|
|
|
- MOLECULE_DISTRO: centos6
|
2020-07-13 23:21:16 +02:00
|
|
|
- MOLECULE_DISTRO: ubuntu2004
|
2018-09-26 04:01:50 +02:00
|
|
|
- MOLECULE_DISTRO: ubuntu1804
|
2014-11-12 21:21:21 +01:00
|
|
|
|
2020-08-12 21:55:25 +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 03:24:48 +02:00
|
|
|
install:
|
|
|
|
# Install test dependencies.
|
2020-02-20 21:22:51 +01:00
|
|
|
- pip install molecule yamllint ansible-lint docker
|
2014-11-12 21:21:21 +01:00
|
|
|
|
2018-09-26 03:44:15 +02:00
|
|
|
before_script:
|
2018-09-26 04:01:50 +02:00
|
|
|
# Use actual Ansible Galaxy role name for the project directory.
|
2018-09-26 03:44:15 +02:00
|
|
|
- cd ../
|
2018-09-26 04:01:50 +02:00
|
|
|
- mv ansible-role-$ROLE_NAME geerlingguy.$ROLE_NAME
|
|
|
|
- cd geerlingguy.$ROLE_NAME
|
2018-09-26 03:44:15 +02:00
|
|
|
|
2018-09-26 03:24:48 +02:00
|
|
|
script:
|
2017-04-02 06:33:34 +02:00
|
|
|
# Run tests.
|
2018-09-26 03:24:48 +02:00
|
|
|
- molecule test
|
2016-02-02 18:18:37 +01:00
|
|
|
|
|
|
|
notifications:
|
2016-09-14 05:15:09 +02:00
|
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|