Make sure fresh dependencies are installed on CI runs
Gitea - aviat/ion/master This commit looks good Details

This commit is contained in:
Timothy Warren 2019-12-05 16:28:28 -05:00
parent b5adf036bf
commit 762d8ca1c4
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 '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'
}