ansible-role-php/.travis.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2014-04-23 18:29:49 +02:00
---
language: python
python: "2.7"
2014-04-23 18:29:49 +02:00
env:
- SITE=test-install-package.yml
- SITE=test-install-from-source.yml
2014-04-23 18:29:49 +02:00
before_install:
- sudo apt-get update -qq
2014-04-23 18:29:49 +02:00
install:
# Install Ansible.
- pip install ansible
# Add ansible.cfg to pick up roles path.
2014-11-08 21:36:55 +01:00
- "{ echo '[defaults]'; echo 'roles_path = ../'; } >> ansible.cfg"
2014-04-23 18:29:49 +02:00
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)
2015-05-26 17:32:11 +02:00
# Run the role/playbook in --check mode.
2015-05-26 17:39:30 +02:00
- "ansible-playbook -i tests/inventory tests/$SITE --connection=local --sudo --check"
2015-05-26 17:32:11 +02:00
2015-06-01 04:05:08 +02:00
# 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)
2015-06-01 04:05:08 +02:00
# And for posterity...
- php -v