-
-
Notifications
You must be signed in to change notification settings - Fork 41
[JENKINS-24076] Add a configuration option for stable build comparison - #24
[JENKINS-24076] Add a configuration option for stable build comparison #24iwonbigbro wants to merge 1 commit into
Conversation
Cppcheck to compare results against a stable build rather than the last build.
jenkinsadmin
commented
Sep 18, 2014
Thank you for a pull request! Please check this document for how the Jenkins project handles pull requests
mixalturek
commented
Sep 19, 2014
I will merge it a release new version on Sunday (hopefully), thanks.
M.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stableBuild would be stored to build.xml together with all non-transient fields now. This data file should contain only data from the particular build, stableBuild is global configuration flag.
<org.jenkinsci.plugins.cppcheck.CppcheckBuildAction>
<owner class="build" reference="../../.."/>
<result>
<owner class="build" reference="../../../.."/>
<statistics>
<errorCount>0</errorCount>
<warningCount>1</warningCount>
<styleCount>22</styleCount>
<performanceCount>2</performanceCount>
<informationCount>1</informationCount>
<noCategoryCount>0</noCategoryCount>
<portabilityCount>0</portabilityCount>
<versions>
<string>1.61</string>
</versions>
</statistics>
<stableBuild>false</stableBuild> <!-- *** HERE *** -->
</result>
<healthReportPercentage>-1</healthReportPercentage>
</org.jenkinsci.plugins.cppcheck.CppcheckBuildAction>
iwonbigbro
commented
Nov 7, 2014
I might be able to get these changes in this weekend. If I have time, I'll also look into the delta issue too. What is the mail group I need to email to get added as a maintainer? Thanks
mixalturek
commented
Nov 8, 2014
nickbroon
commented
Dec 18, 2015
👍
nickbroon
commented
Jan 13, 2016
Any update on merging this? This is much needed behaviour, and should probably even be the default.
Add a configuration option for Cppcheck to compare results against a stable build rather than the last
build.