31 lines
613 B
YAML
31 lines
613 B
YAML
|
---
|
||
|
driver:
|
||
|
name: docker
|
||
|
lint: |
|
||
|
set -e
|
||
|
yamllint .
|
||
|
ansible-lint
|
||
|
flake8
|
||
|
platforms:
|
||
|
- name: centos-7
|
||
|
image: centos:7
|
||
|
dockerfile: ../common/Dockerfile.j2
|
||
|
privileged: true
|
||
|
volumes:
|
||
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
||
|
command: "/usr/sbin/init"
|
||
|
- name: centos-8
|
||
|
image: centos:8
|
||
|
dockerfile: ../common/Dockerfile.j2
|
||
|
privileged: true
|
||
|
volumes:
|
||
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
||
|
command: "/usr/sbin/init"
|
||
|
provisioner:
|
||
|
name: ansible
|
||
|
playbooks:
|
||
|
converge: ../common/playbook_source.yml
|
||
|
verifier:
|
||
|
name: testinfra
|
||
|
directory: ../common/test_source
|