From 823fe0759a5e6eef4b5bcdcb76eed19e91da38d6 Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Fri, 3 Oct 2014 06:17:54 -0400 Subject: [PATCH] Updated to only inject on non-HHVM Saw someone else's .travis.yml that opted to not put those extension lines into the INI when running on HHVM. Worth a shot! --- tests/travis.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/travis.sh b/tests/travis.sh index e8e0790..834094c 100755 --- a/tests/travis.sh +++ b/tests/travis.sh @@ -9,8 +9,9 @@ then PHPINI=/etc/hhvm/php.ini else PHPINI=~/.phpenv/versions/$VERSION/etc/php.ini + + echo "extension = memcache.so" >> $PHPINI + echo "extension = memcached.so" >> $PHPINI + echo "extension = redis.so" >> $PHPINI fi -echo "extension = memcache.so" >> $PHPINI -echo "extension = memcached.so" >> $PHPINI -echo "extension = redis.so" >> $PHPINI