skip imagick and gmagick on hhvm

This commit is contained in:
Carsten Brandt
2015-02-23 17:20:19 +01:00
parent 2cea8e7da3
commit a4871ba801

View File

@ -44,9 +44,15 @@ install:
# core framework:
- travis_retry composer install --prefer-dist --no-interaction
# install php extensions
- pear config-set preferred_state beta
- printf "\n" | pecl install imagick
- printf "\n" | pecl install gmagick
- |
if (php --version | grep -i HipHop > /dev/null); then
echo "Skipping imagick and gmagick tests on HHVM"
else
pear config-set preferred_state beta
printf "\n" | pecl install imagick
# gmagick is not installed on travis currently
#printf "\n" | pecl install gmagick
fi
- tests/unit/data/travis/mongodb-setup.sh
- tests/unit/data/travis/apc-setup.sh
- tests/unit/data/travis/memcache-setup.sh