From f5fddde4564dcbafb11dc61626b07a4be6d8eeff Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Fri, 10 Mar 2017 15:30:33 +0000 Subject: [PATCH] Build/Test tools: Don't attempt to report PHP's extensions when running HHVM jobs on Travis. It doesn't work. git-svn-id: https://develop.svn.wordpress.org/trunk@40267 602fd350-edb4-49c9-b593-d223f7449a82 --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d2863e4daf..729e44ccf2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -72,7 +72,10 @@ before_script: - mysql --version - phpenv versions - php --version -- php -m +- | + if [[ "$TRAVIS_PHP_VERSION" != 'hhvm' ]]; then + php -m + fi - npm --version - node --version - phpunit --version