From d688dbdd2f8c11e25d68f268b87ec6b54c4f3220 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Thu, 12 Mar 2020 10:57:19 -0400 Subject: [PATCH] Yet another CI code coverage commit --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 50c3ef8b..12ec1c99 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -34,10 +34,8 @@ pipeline { } } steps { - sh 'apk update && apk upgrade' - sh 'which phpdbg' - sh 'phpdbg -V' - sh 'phpdbg -dmemory_limit=-1 -qrr -- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml --colors=never' + sh 'apk add --no-cache git php7-phpdbg' + sh 'phpdbg -dmemory_limit=2g -qrr -- ./vendor/bin/phpunit --coverage-text --coverage-clover clover.xml --colors=never' step([ $class: 'CloverPublisher', cloverReportDir: '',