57 lines
1.1 KiB
Groovy
57 lines
1.1 KiB
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('setup') {
|
|
agent any
|
|
steps {
|
|
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 8') {
|
|
agent {
|
|
docker {
|
|
image 'php:8-cli-alpine'
|
|
args '-u root --privileged'
|
|
}
|
|
}
|
|
steps {
|
|
sh 'apk add --no-cache git'
|
|
sh 'php ./vendor/bin/phpunit --colors=never'
|
|
}
|
|
}
|
|
stage('Latest PHP') {
|
|
agent {
|
|
docker {
|
|
image 'php:cli-alpine'
|
|
args '-u root --privileged'
|
|
}
|
|
}
|
|
steps {
|
|
sh 'apk add --no-cache git'
|
|
sh 'php ./vendor/bin/phpunit --colors=never'
|
|
}
|
|
}
|
|
stage('Code Cleanliness') {
|
|
agent any
|
|
steps {
|
|
sh "php8 ./vendor/bin/phpstan analyse -c phpstan.neon"
|
|
recordIssues(tools: [phpStan(reportEncoding: 'UTF-8')])
|
|
}
|
|
}
|
|
stage('Coverage') {
|
|
agent any
|
|
steps {
|
|
sh 'php composer.phar run-script coverage'
|
|
step([
|
|
$class: 'CloverPublisher',
|
|
cloverReportDir: '',
|
|
cloverReportFileName: 'build/logs/clover.xml',
|
|
])
|
|
junit 'build/logs/junit.xml'
|
|
}
|
|
}
|
|
}
|
|
} |