ansible-sshd/.travis.yml

28 lines
824 B
YAML
Raw Normal View History

2015-01-12 22:01:08 +01:00
---
2015-01-15 11:06:52 +01:00
language: c
2015-01-12 22:01:08 +01:00
before_install:
2015-01-15 11:06:52 +01:00
- sudo add-apt-repository -y ppa:ansible/ansible
2015-01-12 22:01:08 +01:00
- sudo apt-get update -qq
2015-01-15 11:06:52 +01:00
- sudo apt-get -qq install ansible
2015-01-12 22:01:08 +01:00
install:
# Add ansible.cfg to pick up roles path.
2015-01-12 22:12:32 +01:00
- "{ echo '[defaults]'; echo 'roles_path = ../'; } >> ansible.cfg"
2015-01-14 13:51:05 +01:00
- "ansible-galaxy install willshersystems.apt"
2015-01-12 22:01:08 +01:00
script:
# Check the roles syntax
- "ansible-playbook -i tests/inventory tests/test.yml --syntax-check"
2015-01-12 22:12:32 +01:00
# Run the role
- "ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo"
2015-01-12 22:01:08 +01:00
2015-01-12 22:12:32 +01:00
# Run the role/playbook again, checking to make sure it's idempotent.
- >
2015-01-12 22:20:19 +01:00
ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo
2015-01-12 22:12:32 +01:00
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)