-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
30 lines (23 loc) · 887 Bytes
/
.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
---
dist: trusty
language: python
python: "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-apt python-pycurl
install:
- pip install ansible==2.2.1.0
- "printf '[defaults]\\nroles_path = ../\\n' > ansible.cfg"
- "printf '[ssh_connection]\\npipelining = True\\n' >> ansible.cfg"
before_script:
- echo localhost > inventory
script:
- ansible-playbook --syntax-check -i inventory tests/test.yml
- ansible-playbook -i inventory tests/test.yml --connection=local --sudo
# Taken from https://servercheck.in/blog/testing-ansible-roles-travis-ci-github
# Run the role/playbook again, checking to make sure it's idempotent.
- >
ansible-playbook -i inventory tests/test.yml --connection=local --sudo
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)