Attempt to add PHPStan messages to CI
timw4mail/HummingBirdAnimeClient/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2021-02-12 10:42:51 -05:00
parent dc02627a34
commit 05b6d29721
1 changed files with 1 additions and 2 deletions

3
Jenkinsfile vendored
View File

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