From 762d8ca1c4b08ccd89d436982391f3adc3c2e70b Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Thu, 5 Dec 2019 16:28:28 -0500 Subject: [PATCH] Make sure fresh dependencies are installed on CI runs --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index a4bb504..53d86cc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,6 +11,7 @@ pipeline { steps { sh 'apk add --no-cache php7-phpdbg' sh 'curl -sS https://getcomposer.org/installer | php' + sh 'rm -f composer.lock' sh 'php composer.phar install --ignore-platform-reqs' sh 'php composer.phar run-script coverage -- --coverage-text --colors=never' } @@ -25,6 +26,7 @@ pipeline { steps { sh 'apk add --no-cache php7-phpdbg' sh 'curl -sS https://getcomposer.org/installer | php' + sh 'rm -f composer.lock' sh 'php composer.phar install --ignore-platform-reqs' sh 'php composer.phar run-script coverage -- --coverage-text --colors=never' } @@ -39,6 +41,7 @@ pipeline { steps { sh 'apk add --no-cache php7-phpdbg' sh 'curl -sS https://getcomposer.org/installer | php' + sh 'rm -f composer.lock' sh 'php composer.phar install --ignore-platform-reqs' sh 'php composer.phar run-script coverage -- --coverage-text --colors=never' }