ansible-role-mongodb/.travis.yml

28 lines
737 B
YAML
Raw Normal View History

2014-06-04 15:09:28 +00:00
---
language: python
python: "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-apt python-pycurl
2014-09-02 22:14:06 +00:00
- sudo apt-get remove --purge -y mongodb-*
2014-06-04 15:09:28 +00:00
install:
- pip install ansible>=1.6.0
script:
- echo localhost > inventory
# Check syntax
- ansible-playbook --syntax-check -i inventory test.yml
# First run
- ansible-playbook -i inventory test.yml --connection=local --sudo
# Second run Idempotence test
2014-07-30 17:45:02 +00:00
# - >
# ansible-playbook -i inventory test.yml --connection=local --sudo
# | grep -q 'changed=0.*failed=0'
# && (echo 'Idempotence test: pass' && exit 0)
# || (echo 'Idempotence test: fail' && exit 1)
2014-06-04 15:09:28 +00:00
2014-07-30 17:45:02 +00:00
# Check for mongodb is running
2014-06-04 15:09:28 +00:00
- ps -ef | grep [m]ongod || exit 1