Remove composer.lock for each test run to make sure dependencies are correctly installed
timw4mail/HummingBirdAnimeClient/develop There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2019-12-06 09:19:47 -05:00
parent 3bb9734e1d
commit 08fc1c81bf
1 changed files with 3 additions and 0 deletions

3
Jenkinsfile vendored
View File

@ -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 'phpdbg -qrr -- ./vendor/bin/phpunit --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 'phpdbg -qrr -- ./vendor/bin/phpunit --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 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
}