Add warnings plugin to replace violations

This plugin has no violations. There is **NO DOCUMENTATION** for this
entire plugin. And I still don't entirely understand how this being the
name of a step makes it work.
This commit is contained in:
William Giokas 2018-06-26 16:55:11 -06:00 committed by rallytime
parent 14db0aa35d
commit 6857bedcc2
No known key found for this signature in database
GPG key ID: E8F1A4B90D0DEA19

View file

@ -39,6 +39,16 @@ pipeline {
}
}
post {
always {
step([$class: 'WarningsPublisher',
parserConfigurations: [[
parserName: 'PyLint',
pattern: 'pylint-report*.xml'
]],
unstableTotalAll: '999',
usePreviousBuildAsReference: true
])
}
success {
githubNotify credentialsId: 'test-jenkins-credentials',
description: 'The lint job has passed',