Attempt to fix Jenkins build, again

This commit is contained in:
Timothy Warren 2021-10-07 21:51:29 -04:00
parent 08932ba8d2
commit 70d5519d22
1 changed files with 0 additions and 10 deletions

10
Jenkinsfile vendored
View File

@ -36,16 +36,6 @@ pipeline {
sh 'php ./vendor/bin/phpunit --colors=never'
}
}
stage('Code Cleanliness') {
agent any
steps {
sh "php ./vendor/bin/phpstan analyse -c phpstan.neon -n --no-progress --no-ansi --error-format=checkstyle | awk '{\$1=\$1;print}' > build/logs/phpstan.log"
recordIssues(
failOnError: false,
tools: [phpStan(reportEncoding: 'UTF-8', pattern: 'build/logs/phpstan.log')]
)
}
}
stage('Coverage') {
agent any
steps {