Make WordPress Core

Changeset 43692


Ignore:
Timestamp:
10/10/2018 04:08:12 PM (6 years ago)
Author:
johnbillion
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.

Merges [43673] to the 5.0 branch.

Location:
branches/5.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.0

  • branches/5.0/.travis.yml

    r41748 r43692  
    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.1
    1624    env: WP_TRAVISCI=travis:js
     
    3139  allow_failures:
    3240  - php: nightly
     41  - php: 7.3.0RC1
    3342before_install:
    3443- |
     
    6473  if [[ "$WP_TRAVISCI" == "travis:phpunit" ]]; then
    6574    case "$TRAVIS_PHP_VERSION" in
    66       7.2|7.1|7.0|nightly)
     75      7.3.0RC1|7.2|7.1|7.0|nightly)
    6776        echo "Using PHPUnit 6.x"
    6877        composer global require "phpunit/phpunit:^6"
Note: See TracChangeset for help on using the changeset viewer.