I have Jenkins-CI and C++ project under SVN. How to save changelog between successfull builds into text (or html) file ? Does Jenkins have any variable/temp file with content of .../changes page?
相关问题
- How to access the camera from my Windows Phone 8 a
- Spring Integration - Inbound file endpoint. How to
- Jenkins - cmd is not recognized
- How can I set the SVN password with Emacs 23.1 bui
- When using Nokogiri, how do you suppress the inser
相关文章
- dotnet restore还原nuget包时无法加载 https://api.nuget.org/
- jenkins在window集群环境中如何部署自动化发布?
- jenkins + Publish over FTP 自动部署前端React项目
- jenkins自定打包部署React前端项目遇到的问题。
- Use savefig in Python with string and iterative in
- Best way to manage docker containers with supervis
- Access BitBucket payload data in Jenkins pipeline
- Jenkins Not Outputting Junit Report Info From File
Here is XPath code that can get you the changeset for a given build id via Jenkins API:
(Put actual build id instead of ${BUILD_ID}). This can be used by a script (say, a Pyhon script utilizing Python Jenkins) that collects changeset results in the end of every build and stores them in a temp locations. After a successful build the script can collect all results stored since the previous build and process them.