Skip to content

Commit

Permalink
Travis: disable xdebug for PHP 7.3 builds
Browse files Browse the repository at this point in the history
This is a temporary workaround, to allow our builds to succeed until
TravisCI is able to fix the root cause.

Fixes #25390
  • Loading branch information
dregad committed Jan 28, 2019
1 parent 8302f9d commit cde055f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/travis_before_script.sh
Expand Up @@ -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


Expand Down

0 comments on commit cde055f

Please sign in to comment.