.travis.yml 548 B

1234567891011121314151617181920212223242526
  1. language: php
  2. php:
  3. - 5.3
  4. - 5.4
  5. - 5.5
  6. - hhvm
  7. env:
  8. - SYMFONY_VERSION=2.3.*
  9. - SYMFONY_VERSION=2.4.*
  10. - SYMFONY_VERSION=dev-master
  11. before_script:
  12. - composer require symfony/symfony:${SYMFONY_VERSION} --no-update
  13. - composer install --dev --prefer-source
  14. - sudo pip install -r Resources/doc/requirements.txt
  15. script: phpunit && cd Resources/doc && sphinx-build -W -b html -d _build/doctrees . _build/html
  16. notifications:
  17. webhooks: http://sonata-project.org/bundles/admin/master/travis
  18. matrix:
  19. allow_failures:
  20. - php: hhvm