2015-05-18 15:45:12 +09:30
|
|
|
language: php
|
|
|
|
|
|
|
|
php:
|
2015-11-02 08:11:22 +01:00
|
|
|
- 7.0
|
2017-02-03 21:53:39 +01:00
|
|
|
- 7.1
|
2017-10-05 13:57:31 +02:00
|
|
|
- 7.2
|
2015-11-02 08:11:22 +01:00
|
|
|
- hhvm
|
2015-05-18 15:45:12 +09:30
|
|
|
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- php: hhvm
|
|
|
|
fast_finish: true
|
|
|
|
|
|
|
|
before_script:
|
2016-01-28 07:59:04 +01:00
|
|
|
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi;
|
2016-01-28 08:06:33 +01:00
|
|
|
- composer self-update
|
2016-01-20 22:22:13 +01:00
|
|
|
- composer install
|
2015-05-18 15:45:12 +09:30
|
|
|
|
|
|
|
script:
|
2016-06-05 09:16:29 +09:30
|
|
|
- vendor/bin/phpunit --coverage-clover=coverage.xml
|
2015-05-18 15:45:12 +09:30
|
|
|
|
|
|
|
notifications:
|
2015-05-19 02:14:56 +02:00
|
|
|
email:
|
|
|
|
on_failure: change
|
2015-05-18 15:45:12 +09:30
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- https://webhooks.gitter.im/e/7b9e9827a03b44a16588
|
|
|
|
on_success: always
|
|
|
|
on_failure: always
|
|
|
|
on_start: false
|
2015-07-05 21:22:51 +09:30
|
|
|
|
2016-03-03 11:50:09 +01:00
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
|
2015-07-05 21:22:51 +09:30
|
|
|
sudo: false
|