Commit 89921e0b by Carsten Brandt

HHVM version ouput has changed

parent 7bbfbb09
......@@ -48,7 +48,7 @@ before_script:
script:
- vendor/bin/phpunit --verbose --coverage-clover=coverage.clover --exclude-group mssql,oci,wincache,xcache,zenddata
- |
if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "skipping application tests on HHVM"
else
cd apps/basic && php vendor/bin/codecept run
......
......@@ -2,7 +2,7 @@
#
# install CUBRID DBMS
if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "Skipping CUBRID on HHVM"
exit 0
fi
......
#!/bin/sh
if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "skipping application init on HHVM"
else
......
#!/bin/sh
if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "skipping memcache on HHVM"
else
mkdir -p ~/.phpenv/versions/$(phpenv version-name)/etc
......
#!/bin/sh
if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "skipping application setup on HHVM"
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment