HummingBirdAnimeClient/Jenkinsfile

52 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-10-11 11:11:24 -04:00
pipeline {
agent none
stages {
2020-03-12 10:24:21 -04:00
stage('setup') {
2020-03-12 11:17:27 -04:00
agent any
steps {
sh 'curl -sS https://getcomposer.org/installer | php'
2020-03-17 15:15:20 -04:00
sh 'rm -rf ./vendor'
sh 'rm -f composer.lock'
sh 'php composer.phar install --ignore-platform-reqs'
2020-03-12 10:24:21 -04:00
}
}
2020-12-11 10:26:24 -05:00
stage('PHP 8') {
agent {
docker {
image 'php:8-cli-alpine'
args '-u root --privileged'
2019-12-05 11:20:06 -05:00
}
}
steps {
sh 'apk add --no-cache git icu-dev'
sh 'docker-php-ext-configure intl && docker-php-ext-install intl'
2020-03-12 11:08:18 -04:00
sh 'php ./vendor/bin/phpunit --colors=never'
2019-12-05 11:20:06 -05:00
}
}
2020-03-12 11:17:27 -04:00
stage('Latest PHP') {
agent {
docker {
2020-12-11 10:26:24 -05:00
image 'php:cli-alpine'
args '-u root --privileged'
2020-03-12 11:17:27 -04:00
}
}
steps {
sh 'apk add --no-cache git icu-dev'
sh 'docker-php-ext-configure intl && docker-php-ext-install intl'
2020-03-12 11:17:27 -04:00
sh 'php ./vendor/bin/phpunit --colors=never'
}
}
2021-02-05 20:21:05 -05:00
stage('Coverage') {
agent any
steps {
2021-02-05 17:49:19 -05:00
sh 'php composer.phar run-script coverage'
step([
$class: 'CloverPublisher',
cloverReportDir: '',
cloverReportFileName: 'build/logs/clover.xml',
])
junit 'build/logs/junit.xml'
2021-02-05 20:21:05 -05:00
}
}
}
}