HHVM is no longer supported on Ubuntu Precise (#439)

This commit is contained in:
madflow 2017-06-02 08:46:48 +02:00 committed by Adrien Loison
parent 99816b0b8e
commit 5d4166196a

View File

@ -1,11 +1,13 @@
language: php
dist: trusty
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-3.6
cache:
directories:
@ -19,5 +21,5 @@ script:
- php vendor/bin/phpunit --coverage-clover=build/logs/coverage.clover
after_script:
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/coverage.clover; fi
- if [[ $TRAVIS_PHP_VERSION != 'hhvm-3.6' && $TRAVIS_PHP_VERSION != '7.0' ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ $TRAVIS_PHP_VERSION != 'hhvm-3.6' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/coverage.clover; fi