-
-
Notifications
You must be signed in to change notification settings - Fork 41
[JENKINS-24076] Add a configuration option for stable build comparison #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Cppcheck to compare results against a stable build rather than the last build.
|
Thank you for a pull request! Please check this document for how the Jenkins project handles pull requests |
|
I will merge it a release new version on Sunday (hopefully), thanks. |
| * | ||
| * @since 1.20 | ||
| */ | ||
| private boolean stableBuild; |
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>
|
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 |
|
👍 |
|
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.