summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-12-15 20:21:08 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2018-12-15 20:21:08 +0100
commit1b3813a314fd003716a27eb3494b88d7006809ad (patch)
treefbe44583211308d7c5d087ce4bcbd7c862186caa /.gitlab-ci.yml
parent3cd70773d81c5f9dc0a6ff1e9d25b94f654c256f (diff)
CI: Fixed xdebug dependency do be php 7.3 compatible (still in beta)
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fd039389..a4a76f44 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -57,7 +57,7 @@ test:
junit: ./unittests.xml
coverage: '/^\s*Lines:\s*(\d+(?:\.\d+)?%)/'
before_script:
- - apk add ${PHPIZE_DEPS} && pecl install xdebug && docker-php-ext-enable xdebug
+ - apk add ${PHPIZE_DEPS} && pecl install xdebug-beta && docker-php-ext-enable xdebug
- curl -sS https://getcomposer.org/installer | php -- --no-ansi --install-dir /usr/local/bin/ --filename composer
- cp -R tests/ phpunit.xml "${DOCROOT}"
- HOMEDIR=$(pwd)