.travis.yml 507 B

123456789101112131415161718192021222324
  1. ---
  2. language: python
  3. python: "2.7"
  4. env:
  5. - ANSIBLE_CONFIG=test/ansible.cfg
  6. before_install:
  7. # Make sure everything's up to date.
  8. - sudo apt-get update -qq
  9. - sudo apt-get install -qq python-apt python-pycurl git python-pip ruby ruby-dev build-essential autoconf
  10. - gem install bundler
  11. install:
  12. - sudo pip install ansible
  13. script:
  14. - ansible --version
  15. - 'ansible-playbook --syntax-check --list-tasks -i "localhost," test/application/gluon-collector.yml'
  16. after_success:
  17. - echo "Success"