Make WordPress Core

Changeset 43673


Ignore:
Timestamp:
10/04/2018 02:04:53 AM (5 years ago)
Author:
jorbin
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.travis.yml

    r43645 r43673  
    1313matrix:
    1414  include:
     15  - php: 7.3.0RC1
     16    sudo: required
     17    dist: xenial
     18    services: mysql
     19    addons:
     20      apt:
     21        packages:
     22          - libzip4
    1523  - php: 7.2
    1624    env: WP_TRAVISCI=travis:format
     
    3442  allow_failures:
    3543  - php: nightly
     44  - php: 7.3.0RC1
    3645before_install:
    3746- |
     
    6776  if [[ "$WP_TRAVISCI" == "travis:phpunit" ]]; then
    6877    case "$TRAVIS_PHP_VERSION" in
    69       7.2|7.1|7.0|nightly)
     78      7.3.0RC1|7.2|7.1|7.0|nightly)
    7079        echo "Using PHPUnit 6.x"
    7180        travis_retry composer global require "phpunit/phpunit:^6"
Note: See TracChangeset for help on using the changeset viewer.