From 54fd85b5d6988c7b2e14b2c43edd4fa35431bf8c Mon Sep 17 00:00:00 2001 From: SilverFire - Dmitry Naumenko Date: Tue, 6 Sep 2016 23:01:25 +0300 Subject: [PATCH] Tried to fix Travis HHVM build --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 32d9e08004..39dd067dc4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,9 +34,9 @@ addons: install: - | - if [ $TRAVIS_PHP_VERSION != '5.6' ]; then + if [ $TRAVIS_PHP_VERSION != '5.6' && $TRAVIS_PHP_VERSION != hhvm* ]; then # disable xdebug for performance reasons when code coverage is not needed - phpenv config-rm xdebug.ini + phpenv config-rm xdebug.ini || echo "xdebug is not installed" fi - travis_retry composer self-update && composer --version - travis_retry composer global require "fxp/composer-asset-plugin:^1.2.0"