From 1abe7d9aeeeaf171b2ec3125cb7f0fd13ae0cbdb Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 11 Mar 2020 22:18:04 -0400 Subject: [PATCH] Make sure git is installed for CI --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b698b0af..6bd12afd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { } } steps { - sh 'apk add --no-cache php7-phpdbg php7-xsl php7-gd php7-json php7-pdo' + sh 'apk add --no-cache git php7-phpdbg php7-xsl php7-gd php7-json php7-pdo' sh 'curl -sS https://getcomposer.org/installer | php' sh 'rm -f composer.lock' sh 'php composer.phar install --ignore-platform-reqs' @@ -25,7 +25,7 @@ pipeline { } } steps { - sh 'apk add --no-cache php7-phpdbg php7-xsl php7-gd php7-json php7-pdo' + sh 'apk add --no-cache git php7-phpdbg php7-xsl php7-gd php7-json php7-pdo' sh 'curl -sS https://getcomposer.org/installer | php' sh 'rm -f composer.lock' sh 'php composer.phar install --ignore-platform-reqs'