Skip to content

Commit

Permalink
Taking a stab at hhvm support on the test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
tedivm committed Dec 19, 2013
1 parent 1ac275c commit 15cc2f1
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions tests/travis/php_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,19 @@

set -e

echo $TRAVIS_PHP_VERSION

if which phpize > /dev/null; then
echo "**************************"
echo "Setting up PHP Extensions."
echo "**************************"
echo ""
echo "PHP Version: $TRAVIS_PHP_VERSION"

if ["$TRAVIS_PHP_VERSION" -eq "hhvm"]
echo "Unable to install php extensions on current system"

else

echo ""
echo "******************************"
echo "Installing phpredis extension."
echo "******************************"
Expand All @@ -21,6 +31,5 @@ if which phpize > /dev/null; then
make install
cd ..
echo "Finished installing phpredis extension."
else
echo "Unable to install php extensions on current system"

fi

0 comments on commit 15cc2f1

Please sign in to comment.