Make WordPress Core

Changeset 40139


Ignore:
Timestamp:
02/28/2017 12:03:18 AM (8 years ago)
Author:
johnbillion
Message:

Build/Test Tools: Only attempt to disable Xdebug on stable builds of PHP.

Unstable builds of PHP (nightly and hhvm) don't have the Xdebug extension enabled. Attempting to disable it results in a build error.

See #39978

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.travis.yml

    r40138 r40139  
    5353  fi
    5454before_script:
    55 - phpenv config-rm xdebug.ini
     55- stable='^[0-9\.]+$'; if [[ "$TRAVIS_PHP_VERSION" =~ $stable ]]; then phpenv config-rm xdebug.ini; fi
    5656- npm install -g npm
    5757- npm install -g grunt-cli
Note: See TracChangeset for help on using the changeset viewer.