Remove XDebug in scaffolded to improve performance

This commit is contained in:
miya0001 2017-08-29 07:24:38 +09:00
parent 273bb42ac0
commit f551898e39

View file

@ -40,6 +40,13 @@ matrix:

before_install:
- phpenv config-rm xdebug.ini
- |
# Remove Xdebug for a huge performance increase:
if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then
phpenv config-rm xdebug.ini
else
echo "xdebug.ini does not exist"
fi

install:
- composer require wp-cli/wp-cli:dev-master