From 486e7dc982f82dc59ab021fef6d5a0e300fec77e Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Fri, 12 Feb 2021 10:34:08 -0500 Subject: [PATCH] Attempt to add PHPStan messages to CI --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5ff92685..6c2877bf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,7 +38,7 @@ 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: [checkstyle(reportEncoding: 'UTF-8')]) + recordIssues(tools: [phpstan(reportEncoding: 'UTF-8')]) } } stage('Coverage') {