Remove HHVM from build
This commit is contained in:
parent
b2ac8fdfd7
commit
698bd813a2
24
.travis.yml
24
.travis.yml
@ -4,9 +4,8 @@ php:
|
|||||||
- 5.4
|
- 5.4
|
||||||
- 5.5
|
- 5.5
|
||||||
- 5.6
|
- 5.6
|
||||||
- 7.0
|
- 7.1
|
||||||
- hhvm
|
- nightly
|
||||||
- hhvm-nightly
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- DB=mysql
|
- DB=mysql
|
||||||
@ -15,7 +14,7 @@ env:
|
|||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- if [[ $TRAVIS_PHP_VERSION = '5.6' && $DB = 'sqlite' ]]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; else PHPUNIT_FLAGS=""; fi
|
- if [[ $TRAVIS_PHP_VERSION = '5.6' && $DB = 'sqlite' ]]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; else PHPUNIT_FLAGS=""; fi
|
||||||
- if [[ $TRAVIS_PHP_VERSION != '5.6' && $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != 'hhvm-nightly' && $TRAVIS_PHP_VERSION != '7.0' ]]; then phpenv config-rm xdebug.ini; fi
|
- if [[ $PHPUNIT_FLAGS == "" ]]; then phpenv config-rm xdebug.ini; fi
|
||||||
- composer self-update
|
- composer self-update
|
||||||
- composer install --prefer-source --dev
|
- composer install --prefer-source --dev
|
||||||
|
|
||||||
@ -24,15 +23,10 @@ script:
|
|||||||
- ENABLE_SECOND_LEVEL_CACHE=1 ./vendor/bin/phpunit -v -c tests/travis/$DB.travis.xml --exclude-group performance,non-cacheable,locking_functional
|
- ENABLE_SECOND_LEVEL_CACHE=1 ./vendor/bin/phpunit -v -c tests/travis/$DB.travis.xml --exclude-group performance,non-cacheable,locking_functional
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
exclude:
|
fast_finish: true
|
||||||
- php: hhvm
|
|
||||||
env: DB=pgsql # driver currently unsupported by HHVM
|
|
||||||
- php: hhvm
|
|
||||||
env: DB=mysqli # driver currently unsupported by HHVM
|
|
||||||
- php: hhvm-nightly
|
|
||||||
env: DB=pgsql # driver currently unsupported by HHVM
|
|
||||||
- php: hhvm-nightly
|
|
||||||
env: DB=mysqli # driver currently unsupported by HHVM
|
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- php: 7.0
|
- php: nightly
|
||||||
- php: hhvm-nightly # hhvm-nightly currently chokes on composer installation
|
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- $HOME/.composer/cache
|
||||||
|
Loading…
x
Reference in New Issue
Block a user