From cde055fab5e6227f8818c749d89c12e0cb71a696 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Mon, 28 Jan 2019 10:36:28 +0100 Subject: [PATCH] Travis: disable xdebug for PHP 7.3 builds This is a temporary workaround, to allow our builds to succeed until TravisCI is able to fix the root cause. Fixes #25390 --- scripts/travis_before_script.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/travis_before_script.sh b/scripts/travis_before_script.sh index 1e87a8a079..e8966dda38 100755 --- a/scripts/travis_before_script.sh +++ b/scripts/travis_before_script.sh @@ -54,6 +54,12 @@ case $TRAVIS_PHP_VERSION in EOF phpenv config-add mantis_config.ini ;; + + 7.3) + # Disable xdebug as it is causing the builds to fail (see #25390) + # reference https://github.com/travis-ci/travis-ci/issues/1697#issuecomment-29542251 + phpenv config-rm xdebug.ini + ;; esac