.travis.yml 554 B

1234567891011121314151617181920212223242526272829
  1. language: php
  2. php:
  3. - 5.3.3
  4. - 5.3
  5. - 5.4
  6. - 5.5
  7. - 5.6
  8. - hhvm
  9. env:
  10. - INSTALL_PHP_INVOKER=0
  11. - INSTALL_PHP_INVOKER=1
  12. before_script:
  13. - sh -c "if [ '$INSTALL_PHP_INVOKER' = '1' ]; then composer require --dev --prefer-source phpunit/php-invoker:\>=1.1.0,\<1.2.0; else composer install --dev --prefer-source; fi"
  14. script: ./phpunit.php --configuration ./build/travis-ci.xml
  15. matrix:
  16. allow_failures:
  17. - php: hhvm
  18. notifications:
  19. email: false
  20. irc:
  21. channels:
  22. - "irc.freenode.org#phpunit"
  23. use_notice: true