summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-07-21 04:53:50 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2019-07-21 04:58:02 +0200
commitea4c258e5c26e6528d36cda3afb52458ca0bd801 (patch)
treecb6949bf70325e369e2efa7d32bdc8f9d6294b69
parentb9cb7d57fdea7246f536204fd0f267380434aa09 (diff)
GitLab CI: Removed xdebug beta as it is not php7.3 compatible
-rw-r--r--.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index db26ce4c..fa23d90d 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-beta && docker-php-ext-enable xdebug
+ - apk add ${PHPIZE_DEPS} && pecl install xdebug && 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)
@@ -122,6 +122,7 @@ deploy-staging:
script:
# Check if deployment variables where set
- |-
+ - |-
if [ -z "${SSH_PRIVATE_KEY}" ] || [ -z "${STAGING_REMOTE}" ] || [ -z "${STAGING_REMOTE_PATH}" ]; then
echo "Skipping deployment";
exit