forked from jradtilbrook/ansible-role-pgbouncer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
30 lines (24 loc) · 1.06 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
language: generic
# thanks to geerlingguy for most of this test configuration
services: docker
before_install:
- docker pull geerlingguy/docker-ubuntu1604-ansible
script:
- container_id=`mktemp`
# run container in detached state
- docker run -d -v "`pwd`:/etc/ansible/roles/role_under_test:ro" --privileged geerlingguy/docker-ubuntu1604-ansible /lib/systemd/systemd > $container_id
# ansible syntax check
- docker exec "`cat $container_id`" ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml --syntax-check
# run through role
- docker exec "`cat $container_id`" ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml
# test idempotence
- idempotence=`mktemp`
- docker exec "`cat $container_id`" ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml | tee -a $idempotence
- >
tail $idempotence
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/