Skip to content

Commit 34f048f

Browse files
committed
Removed HHVM from tests.
1 parent 71cb6ef commit 34f048f

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ php:
44
- '5.5'
55
- '5.6'
66
- '7.0'
7-
- hhvm
87

98
# Optimize the build since we are `composer installing` for each supported
109
# Laravel versions (see composer.json, under scripts sections).

tests/5.3/install

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ CWD=`dirname $0`
66
# Get PHP version.
77
PHP_VERSION=`php -v`
88

9-
# Install dependencies if PHP version is 5.6, 7.0 or HHVM.
10-
if [[ $PHP_VERSION =~ "PHP 5.6" || $PHP_VERSION =~ "PHP 7.0" || $PHP_VERSION =~ "HHVM" ]] ; then
9+
# Install dependencies if PHP version is 5.6 or 7.0.
10+
if [[ $PHP_VERSION =~ "PHP 5.6" || $PHP_VERSION =~ "PHP 7.0" ]] ; then
1111
echo "Current working directory is: $CWD"
1212
echo "PHP version is: $PHP_VERSION"
1313
composer install --prefer-dist --no-interaction --working-dir "$CWD"

tests/5.3/run

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ CWD=`dirname $0`
66
# Get PHP version.
77
PHP_VERSION=`php -v`
88

9-
# Run if PHP version is 5.6, 7.0 or HHVM.
10-
if [[ $PHP_VERSION =~ "PHP 5.6" || $PHP_VERSION =~ "PHP 7.0" || $PHP_VERSION =~ "HHVM" ]] ; then
9+
# Run if PHP version is 5.6 or 7.0.
10+
if [[ $PHP_VERSION =~ "PHP 5.6" || $PHP_VERSION =~ "PHP 7.0" ]] ; then
1111
echo "Current working directory is: $CWD"
1212
echo "PHP version is: $PHP_VERSION"
1313
"$CWD"/../../vendor/bin/phpunit --configuration "$CWD"

tests/5.4/install

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ CWD=`dirname $0`
66
# Get PHP version.
77
PHP_VERSION=`php -v`
88

9-
# Install dependencies if PHP version is 5.6, 7.0 or HHVM.
10-
if [[ $PHP_VERSION =~ "PHP 5.6" || $PHP_VERSION =~ "PHP 7.0" || $PHP_VERSION =~ "HHVM" ]] ; then
9+
# Install dependencies if PHP version is 5.6 or 7.0.
10+
if [[ $PHP_VERSION =~ "PHP 5.6" || $PHP_VERSION =~ "PHP 7.0" ]] ; then
1111
echo "Current working directory is: $CWD"
1212
echo "PHP version is: $PHP_VERSION"
1313
composer install --prefer-dist --no-interaction --working-dir "$CWD"

tests/5.4/run

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ echo "Current working directory is: $CWD"
88
PHP_VERSION=`php -v`
99
echo "PHP version is: $PHP_VERSION"
1010

11-
# Run if PHP version is 5.6, 7.0 or HHVM.
12-
if [[ $PHP_VERSION =~ "PHP 5.6" || $PHP_VERSION =~ "PHP 7.0" || $PHP_VERSION =~ "HHVM" ]] ; then
11+
# Run if PHP version is 5.6 or 7.0.
12+
if [[ $PHP_VERSION =~ "PHP 5.6" || $PHP_VERSION =~ "PHP 7.0" ]] ; then
1313
"$CWD"/vendor/bin/phpunit --configuration "$CWD"
1414
else
1515
echo "No running tests for PHP version: $PHP_VERSION"

0 commit comments

Comments
 (0)