Make WordPress Core

Changeset 40546 for trunk/.travis.yml


Ignore:
Timestamp:
04/24/2017 12:27:28 AM (8 years ago)
Author:
johnbillion
Message:

Build/Test Tools: Remove HHVM from the test infrastructure on Travis.

Fixes #40548

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.travis.yml

    r40538 r40546  
    2424  - php: 5.3
    2525  - php: 5.2
    26   - php: hhvm
    27     sudo: required
    28     dist: trusty
    29     group: edge
    30     addons:
    31       apt:
    32         packages:
    33         - mysql-server-5.6
    34         - mysql-client-core-5.6
    35         - mysql-client-5.6
    3626  - php: nightly
    3727  allow_failures:
    38   - php: hhvm
    3928  - php: nightly
    4029before_install:
     
    5544before_script:
    5645- |
    57   # Remove Xdebug for a huge performance increase, but not from nightly or hhvm:
     46  # Remove Xdebug for a huge performance increase, but not from nightly:
    5847  stable='^[0-9\.]+$'
    5948  if [[ "$TRAVIS_PHP_VERSION" =~ $stable ]]; then
     
    7362        echo "Using PHPUnit 6.1"
    7463        composer global require "phpunit/phpunit=6.1.*"
    75         ;;
    76       hhvm)
    77         echo "Using PHPUnit 5.7"
    78         composer global require "phpunit/phpunit=5.7.*"
    7964        ;;
    8065      5.6|5.5|5.4|5.3)
     
    10186- phpenv versions
    10287- php --version
    103 - |
    104   # Debug PHP extensions, but not on HHVM because the command hangs indefinitely:
    105   if [[ "$TRAVIS_PHP_VERSION" != 'hhvm' ]]; then
    106     php -m
    107   fi
     88- php -m
    10889- npm --version
    10990- node --version
Note: See TracChangeset for help on using the changeset viewer.