ansible-role-apache/.travis.yml

35 lines
937 B
YAML
Raw Normal View History

2014-04-22 14:39:07 +02:00
---
language: python
python: "2.7"
2014-04-22 14:39:07 +02:00
env:
- SITE=test.yml
2014-04-22 14:39:07 +02:00
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y curl
2014-04-22 14:39:07 +02:00
install:
# Install Ansible.
- pip install ansible
# Add ansible.cfg to pick up roles path.
- "printf '[defaults]\nroles_path = ../' > ansible.cfg"
2014-04-22 14:39:07 +02:00
script:
2014-04-22 17:21:44 +02:00
# Check the role/playbook's syntax.
- "ansible-playbook -i tests/inventory tests/$SITE --syntax-check"
2014-04-22 17:21:44 +02:00
# Run the role/playbook with ansible-playbook.
- "ansible-playbook -i tests/inventory tests/$SITE --connection=local --sudo"
2014-04-22 17:21:44 +02:00
# Run the role/playbook again, checking to make sure it's idempotent.
- >
ansible-playbook -i tests/inventory tests/$SITE --connection=local --sudo
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
2014-04-22 17:36:30 +02:00
|| (echo 'Idempotence test: fail' && exit 1)
2014-04-22 17:21:44 +02:00
# Request a page via Apache, to make sure Apache is running and responds.
- "curl http://localhost/"