Attempt to add PHPStan messages to CI
This commit is contained in:
parent
68bc4693cb
commit
057d4bfae7
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -35,7 +35,12 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Code Cleanliness') {
|
stage('Code Cleanliness') {
|
||||||
agent any
|
agent {
|
||||||
|
docker {
|
||||||
|
image 'php:8-cli-alpine'
|
||||||
|
args '-u root --privileged'
|
||||||
|
}
|
||||||
|
}
|
||||||
steps {
|
steps {
|
||||||
sh "php ./vendor/bin/phpstan analyse src/ -c phpstan.neon -n --no-ansi --no-progress --error-format=checkstyle > build/logs/checkstyle.xml"
|
sh "php ./vendor/bin/phpstan analyse src/ -c phpstan.neon -n --no-ansi --no-progress --error-format=checkstyle > build/logs/checkstyle.xml"
|
||||||
recordIssues(tools: [checkstyle(reportEncoding: 'UTF-8')])
|
recordIssues(tools: [checkstyle(reportEncoding: 'UTF-8')])
|
||||||
|
Loading…
Reference in New Issue
Block a user