Attempt to add PHPStan messages to CI

This commit is contained in:
Timothy Warren 2021-02-12 10:38:16 -05:00
parent 73cf8ccd5a
commit c173a8c196
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -38,7 +38,8 @@ pipeline {
agent any
steps {
sh "php8 ./vendor/bin/phpstan analyse -c phpstan.neon -n --no-ansi --no-progress --error-format=checkstyle | awk '{\$1=\$1;print}' > build/logs/checkstyle.xml"
recordIssues(tools: [phpstan(reportEncoding: 'UTF-8')])
// recordIssues(tools: [checkStyle(reportEncoding: 'UTF-8')])
checkStyle 'build/logs/checkstyle.xml'
}
}
stage('Coverage') {