-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow to use valgrindParser to report memory issues The analytic-model already has the valgrind model. Just extend the plugin to use it. recordIssues sourceCodeRetention: 'LAST_BUILD', tool: Valgrind(pattern: "out/test/memcheck.xml"), qualityGates: [[threshold: 1, type: 'TOTAL', criticality: 'FAILURE']] Add Fix copy paste error in JavaDoc from Ullrich Hafner Reviewed-by: Ullrich Hafner <ullrich.hafner@gmail.com> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
- 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.