-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1909 from panicking/feature/add-valgrind-parser
Adding Valgrind Issues reporting
- Loading branch information
Showing
3 changed files
with
544 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
plugin/src/main/java/io/jenkins/plugins/analysis/warnings/Valgrind.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package io.jenkins.plugins.analysis.warnings; | ||
|
||
import org.kohsuke.stapler.DataBoundConstructor; | ||
import org.jenkinsci.Symbol; | ||
import hudson.Extension; | ||
|
||
import io.jenkins.plugins.analysis.core.model.AnalysisModelParser; | ||
import io.jenkins.plugins.analysis.core.model.StaticAnalysisLabelProvider; | ||
import io.jenkins.plugins.analysis.core.model.SymbolIconLabelProvider; | ||
|
||
/** | ||
* Provides a parser and customized messages for Valgrind. | ||
* | ||
* @author Michael Trimarchi | ||
*/ | ||
public class Valgrind extends AnalysisModelParser { | ||
private static final long serialVersionUID = 1L; | ||
private static final String ID = "valgrind"; | ||
|
||
/** Creates a new instance of {@link Valgrind}. */ | ||
@DataBoundConstructor | ||
public Valgrind() { | ||
super(); | ||
// empty constructor required for stapler | ||
} | ||
|
||
/** Descriptor for this static analysis tool. */ | ||
@Symbol("valgrind") | ||
@Extension | ||
public static class Descriptor extends AnalysisModelParserDescriptor { | ||
/** Creates the descriptor instance. */ | ||
public Descriptor() { | ||
super(ID); | ||
} | ||
|
||
@Override | ||
public StaticAnalysisLabelProvider getLabelProvider() { | ||
return new SymbolIconLabelProvider(getId(), getDisplayName(), getDescriptionProvider(), "symbol-solid/bug-slash plugin-font-awesome-api"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.