Simplify Jenkins build again
timw4mail/HummingBirdAnimeClient/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2020-03-17 15:15:20 -04:00
parent e550a096bc
commit 61ca4300d4
1 changed files with 3 additions and 9 deletions

12
Jenkinsfile vendored
View File

@ -5,6 +5,9 @@ pipeline {
agent any agent any
steps { steps {
sh 'curl -sS https://getcomposer.org/installer | php' sh 'curl -sS https://getcomposer.org/installer | php'
sh 'rm -rf ./vendor'
sh 'rm -f composer.lock'
sh 'php composer.phar install --ignore-platform-reqs'
} }
} }
stage('PHP 7.3') { stage('PHP 7.3') {
@ -16,9 +19,6 @@ pipeline {
} }
steps { steps {
sh 'apk add --no-cache git' sh 'apk add --no-cache git'
sh 'rm -rf ./vendor'
sh 'rm -f composer.lock'
sh 'php composer.phar install --ignore-platform-reqs'
sh 'php ./vendor/bin/phpunit --colors=never' sh 'php ./vendor/bin/phpunit --colors=never'
} }
} }
@ -31,9 +31,6 @@ pipeline {
} }
steps { steps {
sh 'apk add --no-cache git' sh 'apk add --no-cache git'
sh 'rm -rf ./vendor'
sh 'rm -f composer.lock'
sh 'php composer.phar install --ignore-platform-reqs'
sh 'php ./vendor/bin/phpunit --colors=never' sh 'php ./vendor/bin/phpunit --colors=never'
} }
} }
@ -46,9 +43,6 @@ pipeline {
} }
steps { steps {
sh 'apk add --no-cache git' sh 'apk add --no-cache git'
sh 'rm -rf ./vendor'
sh 'rm -f composer.lock'
sh 'php composer.phar install --ignore-platform-reqs'
sh 'php ./vendor/bin/phpunit --colors=never' sh 'php ./vendor/bin/phpunit --colors=never'
} }
} }