mirror of
https://github.com/roles-ansible/ansible_role_restic/
synced 2024-11-10 05:43:30 +01:00
ci
This commit is contained in:
parent
5d2865ea28
commit
a9e5d4e07e
3 changed files with 67 additions and 0 deletions
35
.travis.yml
Normal file
35
.travis.yml
Normal file
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
language: python
|
||||
services: docker
|
||||
|
||||
env:
|
||||
global:
|
||||
- ROLE_NAME: restic
|
||||
matrix:
|
||||
- MOLECULE_DISTRO: centos7
|
||||
- MOLECULE_DISTRO: centos6
|
||||
- MOLECULE_DISTRO: ubuntu1804
|
||||
- MOLECULE_DISTRO: debian9
|
||||
- MOLECULE_DISTRO: debian10
|
||||
|
||||
install:
|
||||
- pip install molecule docker
|
||||
|
||||
- git clone https://github.com/arillso/tests molecule/default/lint
|
||||
|
||||
before_script:
|
||||
- cd ../
|
||||
- mv ansible.$ROLE_NAME projectgroup.$ROLE_NAME
|
||||
- cd projectgroup.$ROLE_NAME
|
||||
|
||||
script:
|
||||
- molecule test
|
||||
|
||||
notifications:
|
||||
webhooks:
|
||||
urls:
|
||||
- https://galaxy.ansible.com/api/v1/notifications/
|
||||
on_success: always
|
||||
email:
|
||||
on_success: never
|
||||
on_failure: always
|
27
molecule/default/molecule.yml
Normal file
27
molecule/default/molecule.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
dependency:
|
||||
name: galaxy
|
||||
driver:
|
||||
name: docker
|
||||
lint:
|
||||
name: yamllint
|
||||
platforms:
|
||||
- name: instance
|
||||
image: 'geerlingguy/docker-${MOLECULE_DISTRO:-centos7}-ansible:latest'
|
||||
command: ${MOLECULE_DOCKER_COMMAND:-""}
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
privileged: true
|
||||
pre_build_image: true
|
||||
provisioner:
|
||||
name: ansible
|
||||
lint:
|
||||
name: ansible-lint
|
||||
playbooks:
|
||||
converge: ${MOLECULE_PLAYBOOK:-playbook.yml}
|
||||
scenario:
|
||||
name: default
|
||||
verifier:
|
||||
name: testinfra
|
||||
lint:
|
||||
name: flake8
|
5
molecule/default/playbook.yml
Normal file
5
molecule/default/playbook.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- name: Converge
|
||||
hosts: all
|
||||
roles:
|
||||
- role: arillso.restic
|
Loading…
Reference in a new issue