Skip to content

Commit

Permalink
[JENKINS-23247] Display trends graph last 10/20 sucessful/fail builds…
Browse files Browse the repository at this point in the history
… in CPPcheck plugin.

- Broken build fixed.
  • Loading branch information
mixalturek committed Sep 27, 2014
1 parent 1ca7ea2 commit 090d7ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Expand Up @@ -192,6 +192,7 @@ private Object readResolve() {
org.jenkinsci.plugins.cppcheck.config.CppcheckConfigGraph configGraph = new org.jenkinsci.plugins.cppcheck.config.CppcheckConfigGraph(
cppcheckConfig.getConfigGraph().getXSize(),
cppcheckConfig.getConfigGraph().getYSize(),
0,
cppcheckConfig.getConfigGraph().isDiplayAllError(),
cppcheckConfig.getConfigGraph().isDisplaySeverityError(),
cppcheckConfig.getConfigGraph().isDisplaySeverityPossibleError(),
Expand Down
Expand Up @@ -10,15 +10,13 @@
</f:entry>

<f:entry>
<f:checkbox name="cppcheck.ignoreBlankFiles" checked="${config.ignoreBlankFiles}"
id="cppcheck.ignoreBlankFiles"/>
<label for="cppcheck.ignoreBlankFiles">${%Ignore blank files}</label>
<f:checkbox name="cppcheck.ignoreBlankFiles" checked="${config.ignoreBlankFiles}"/>
<label class="attach-previous">${%Ignore blank files}</label>
</f:entry>

<f:entry>
<f:checkbox name="cppcheck.allowNoReport" checked="${config.allowNoReport}"
id="cppcheck.allowNoReport"/>
<label for="cppcheck.allowNoReport">${%Do not fail the build if the Cppcheck report is not found}</label>
<f:checkbox name="cppcheck.allowNoReport" checked="${config.allowNoReport}"/>
<label class="attach-previous">${%Do not fail the build if the Cppcheck report is not found}</label>
</f:entry>

<f:advanced>
Expand Down

0 comments on commit 090d7ac

Please sign in to comment.