melexis / warnings-plugin

Command-line tool for marking builds with too many warnings as failed. A command-line alternative for https://github.com/jenkinsci/warnings-plugin. Useable with plugin-less CI systems like Gitlab-CI and even Travis-CI
Apache License 2.0
7 stars 2 forks source link

Implement Coverity checker and include triaged defects #128

Open JasperCraeghs opened 8 months ago

JasperCraeghs commented 8 months ago

We want to complete https://github.com/melexis/warnings-plugin/pull/74 and add support for this checker to the code-quality-report feature.

The classification of the defect shall determine the severity string. Every classification included in this configuration, will be included in the code quality report, and, by default, they will be counted towards the warnings limit. You can exclude a classification from the count. Any classification not included in this configuration, will be ignored. Example configuration:

{
    "intentional": {"severity": "info", "count": False},
    "bug": {"severity": "major"},
    "pending": {"severity": "critical"},
}

What do you think, @Letme ?

Letme commented 8 months ago

Sounds what we want yes and also severity is OK.