From a6adbc226f48599367b7ae6f86457ca84bf50cfb Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Thu, 4 Oct 2018 02:04:53 +0000 Subject: [PATCH] Build/Test Tools: Add PHP7.3 RC1 to the build matrix Currently, we need to do some extra steps to run 7.3, but this will help us with testing compatibility. See: https://github.com/travis-ci/travis-ci/issues/9717 See #44771. git-svn-id: https://develop.svn.wordpress.org/trunk@43673 602fd350-edb4-49c9-b593-d223f7449a82 --- .travis.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 49d2d67274..2c37a9abdf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,14 @@ env: - WP_TRAVISCI=travis:phpunit matrix: include: + - php: 7.3.0RC1 + sudo: required + dist: xenial + services: mysql + addons: + apt: + packages: + - libzip4 - php: 7.2 env: WP_TRAVISCI=travis:format - php: 7.1 @@ -33,6 +41,7 @@ matrix: - php: nightly allow_failures: - php: nightly + - php: 7.3.0RC1 before_install: - | if [[ "$WP_TRAVISCI" == "travis:phpunit" ]]; then @@ -66,7 +75,7 @@ before_script: # Install the specified version of PHPUnit depending on the PHP version: if [[ "$WP_TRAVISCI" == "travis:phpunit" ]]; then case "$TRAVIS_PHP_VERSION" in - 7.2|7.1|7.0|nightly) + 7.3.0RC1|7.2|7.1|7.0|nightly) echo "Using PHPUnit 6.x" travis_retry composer global require "phpunit/phpunit:^6" ;;