Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion functions/drupal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ function drupal_ti_run_server() {

# Use hhvm_serve for PHP 5.3 fcgi and hhvm fcgi
PHP_VERSION=$(phpenv version-name)

# Hack: Remove me.
PHP_VERSION="hhvm"

if [ "$PHP_VERSION" = "5.3" -o "$PHP_VERSION" = "hhvm" ]
then
export GOPATH="$DRUPAL_TI_DIST_DIR/go"
Expand Down Expand Up @@ -182,7 +186,9 @@ function drupal_ti_ensure_php_for_drush_webserver() {
PHP_VERSION=$(phpenv version-name)
if [ "$PHP_VERSION" != "5.3" -a "$PHP_VERSION" != "hhvm" ]
then
return
# Hack: Remove me.
#return
echo "Overriding PHP version check" 1>&2
fi
if [ "$PHP_VERSION" = "hhvm" ]
then
Expand Down
3 changes: 3 additions & 0 deletions runners/phpunit-core/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

set -e $DRUPAL_TI_DEBUG

# Ensure drush webserver can be started for PHP 5.3 / HHVM
drupal_ti_ensure_php_for_drush_webserver

# Ensure that drush is installed.
drupal_ti_ensure_drush

Expand Down