File tree 5 files changed +8
-9
lines changed
5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 4
4
- ' 5.5'
5
5
- ' 5.6'
6
6
- ' 7.0'
7
- - hhvm
8
7
9
8
# Optimize the build since we are `composer installing` for each supported
10
9
# Laravel versions (see composer.json, under scripts sections).
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ CWD=`dirname $0`
6
6
# Get PHP version.
7
7
PHP_VERSION=` php -v`
8
8
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
11
11
echo " Current working directory is: $CWD "
12
12
echo " PHP version is: $PHP_VERSION "
13
13
composer install --prefer-dist --no-interaction --working-dir " $CWD "
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ CWD=`dirname $0`
6
6
# Get PHP version.
7
7
PHP_VERSION=` php -v`
8
8
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
11
11
echo " Current working directory is: $CWD "
12
12
echo " PHP version is: $PHP_VERSION "
13
13
" $CWD " /../../vendor/bin/phpunit --configuration " $CWD "
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ CWD=`dirname $0`
6
6
# Get PHP version.
7
7
PHP_VERSION=` php -v`
8
8
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
11
11
echo " Current working directory is: $CWD "
12
12
echo " PHP version is: $PHP_VERSION "
13
13
composer install --prefer-dist --no-interaction --working-dir " $CWD "
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ echo "Current working directory is: $CWD"
8
8
PHP_VERSION=` php -v`
9
9
echo " PHP version is: $PHP_VERSION "
10
10
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
13
13
" $CWD " /vendor/bin/phpunit --configuration " $CWD "
14
14
else
15
15
echo " No running tests for PHP version: $PHP_VERSION "
You can’t perform that action at this time.
0 commit comments