From 05b6d297217cdf925af33c2300b7ce6f8978dd18 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Fri, 12 Feb 2021 10:42:51 -0500 Subject: [PATCH] Attempt to add PHPStan messages to CI --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 73fb4286..0abe3756 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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') {