mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-02 09:02:35 +02:00
fe2e4e7757
* chore: switch to new parameter name Since warnings-ng plugin version 11 the blameDisabled parameter has been replaced by skipBlames. To be compatible with Jenkinsfile Runner we put the recordIssues step into a try/catch, so no exception is thrown and the build fails. * docs: improve wording Co-authored-by: Srinikitha Kondreddy <srinikitha.kondreddy@sap.com> --------- Co-authored-by: Srinikitha Kondreddy <srinikitha.kondreddy@sap.com>
38 lines
1.3 KiB
Groovy
38 lines
1.3 KiB
Groovy
import com.sap.piper.BuildTool
|
|
import com.sap.piper.DownloadCacheUtils
|
|
import groovy.transform.Field
|
|
import hudson.AbortException
|
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = 'metadata/npmExecuteLint.yaml'
|
|
|
|
//Metadata maintained in file project://resources/metadata/npmExecuteLint.yaml
|
|
|
|
void call(Map parameters = [:]) {
|
|
final script = checkScript(this, parameters) ?: this
|
|
parameters = DownloadCacheUtils.injectDownloadCacheInParameters(script, parameters, BuildTool.NPM)
|
|
|
|
try {
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, [])
|
|
} catch (Exception exception) {
|
|
error("Linter execution failed. Please examine the reports which are also available in the Jenkins user interface.")
|
|
}
|
|
finally {
|
|
visualizeLintingResults(script)
|
|
}
|
|
}
|
|
|
|
private visualizeLintingResults(Script script) {
|
|
try {
|
|
recordIssues skipBlames: true,
|
|
enabledForFailure: true,
|
|
aggregatingResults: false,
|
|
tool: script.checkStyle(id: "lint", name: "Lint", pattern: "*lint.xml")
|
|
} catch (e) {
|
|
echo "recordIssues has failed. Possibly due to an outdated version of the warnings-ng plugin."
|
|
e.printStackTrace()
|
|
}
|
|
}
|