a3620ba5e7
* postgres-update für 2004 * Rolle Create USers entfernt, Nutzer wird jetzt durch nickjj.ansible_user erstellt * Reihenfolge Tasks angepasst * Rolle create_users angepasst * wip * linter * github Actions Version angepasst * Rolle geerlingguy.ansible hinzugefügt * neue Ansible Version * Version github actions
38 lines
1 KiB
YAML
38 lines
1 KiB
YAML
---
|
|
language: python
|
|
services: docker
|
|
|
|
env:
|
|
global:
|
|
- ROLE_NAME: ansible
|
|
matrix:
|
|
- MOLECULE_DISTRO: centos8
|
|
- MOLECULE_DISTRO: fedora32
|
|
# See: https://github.com/geerlingguy/ansible-role-ansible/issues/18
|
|
# - MOLECULE_DISTRO: ubuntu2004
|
|
- MOLECULE_DISTRO: ubuntu1804
|
|
- MOLECULE_DISTRO: debian10
|
|
|
|
- MOLECULE_DISTRO: centos8
|
|
MOLECULE_PLAYBOOK: playbook-pip.yml
|
|
|
|
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
|
|
|
|
install:
|
|
# Install test dependencies.
|
|
- pip install molecule yamllint ansible-lint docker
|
|
|
|
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
|
|
|
|
script:
|
|
# Run tests.
|
|
- molecule test
|
|
|
|
notifications:
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|