ansible-role-php/.travis.yml
2016-01-14 22:24:39 -06:00

47 lines
1.3 KiB
YAML

---
language: python
python: "2.7"
env:
- SITE=test-install-package.yml
- SITE=test-install-from-source.yml
before_install:
- sudo apt-get update -qq
install:
# Install Ansible.
# TODO - remove specific version number after the following issue is fixed:
# https://github.com/ansible/ansible-modules-core/issues/2473
- pip install ansible==1.9.4
# Add ansible.cfg to pick up roles path.
- "{ echo '[defaults]'; echo 'roles_path = ../'; } >> ansible.cfg"
script:
# Check the role/playbook's syntax.
- "ansible-playbook -i tests/inventory tests/$SITE --syntax-check"
# Run the role/playbook with ansible-playbook.
- "ansible-playbook -i tests/inventory tests/$SITE --connection=local --sudo"
# 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)
|| (echo 'Idempotence test: fail' && exit 1)
# Run the role/playbook in --check mode.
- "ansible-playbook -i tests/inventory tests/$SITE --connection=local --sudo --check"
# Make sure PHP is available.
- >
php -v
| grep -q 'The PHP Group'
&& (echo 'PHP is installed' && exit 0)
|| (echo 'PHP is not installed' && exit 1)
# And for posterity...
- php -v