Skip to content

Commit 754c06f

Browse files
committed
Fix PHP 5.4 and 5.5 tests; drop HHVM support
1 parent 3e8693c commit 754c06f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
language: php
22

33
php:
4-
- "5.4"
5-
- "5.5"
64
- "5.6"
75
- "7.0"
86
- "7.1"
97
- "7.2"
108
- "7.3"
11-
- "hhvm"
129

1310
matrix:
1411
include:
1512
- php: 5.3
1613
dist: precise
14+
- php: 5.4
15+
dist: trusty
16+
- php: 5.5
17+
dist: trusty
1718

1819
sudo: false
1920

2021
install: travis_retry composer install --no-interaction --prefer-source
2122

2223
script:
23-
- if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi
24-
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi
24+
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
2525

2626
after_script:
27-
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ] && [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
27+
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi

0 commit comments

Comments
 (0)