Skip to content
Merged
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
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ language: php

php:
# - 5.3 # requires old distro, see below
- 5.4
- 5.5
# - 5.4 # requires old distro, see below
# - 5.5 # requires old distro, see below
- 5.6
- 7.0
- 7.1
Expand All @@ -12,12 +12,16 @@ php:
# - hhvm # requires legacy phpunit & ignore errors, see below

# lock distro so new future defaults will not break the build
dist: trusty
dist: xenial

matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
- php: hhvm
install: composer require phpunit/phpunit:^5 --dev --no-interaction
allow_failures:
Expand Down
3 changes: 2 additions & 1 deletion travis-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ if [[ "$TRAVIS_PHP_VERSION" != "hhvm" &&
# install 'libuv' PHP extension (does not support php 5)
if [[ "$TRAVIS_PHP_VERSION" = "7.0" ||
"$TRAVIS_PHP_VERSION" = "7.1" ||
"$TRAVIS_PHP_VERSION" = "7.2" ]]; then
"$TRAVIS_PHP_VERSION" = "7.2" ||
"$TRAVIS_PHP_VERSION" = "7.3" ]]; then
echo "yes" | pecl install uv-beta
fi

Expand Down