From cc0e03b573b7295ab24c971391dc0d1ca000a4c4 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Thu, 12 Mar 2020 11:20:07 -0400 Subject: [PATCH] Yet another CI code coverage commit --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 04d9c1df..5471764a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,6 @@ pipeline { stage('setup') { agent any steps { - sh 'apk add --no-cache git' sh 'curl -sS https://getcomposer.org/installer | php' sh 'rm -f composer.lock' sh 'php composer.phar install --ignore-platform-reqs' @@ -18,6 +17,7 @@ pipeline { } } steps { + sh 'apk add --no-cache git' sh 'php ./vendor/bin/phpunit --colors=never' } } @@ -29,6 +29,7 @@ pipeline { } } steps { + sh 'apk add --no-cache git' sh 'php ./vendor/bin/phpunit --colors=never' } } @@ -40,6 +41,7 @@ pipeline { } } steps { + sh 'apk add --no-cache git' sh 'php ./vendor/bin/phpunit --colors=never' } }