Reputation: 21
For the build e-mail that goes out, I am using "${CHANGES}" to get a list of SVN changes since the last successful build. I would like that to include hyperlinks to actual (visual) diffs for the individual checkins. I googled around and saw some plugins that do diffs, but it seems like they were just doing what "${CHANGES}" provided, and not really what I'm looking for...
Upvotes: 1
Views: 1147
Reputation: 14772
See <your project's config> → Source Code Management → Subversion → Repository browser → :
Adds links in "changes" views within Jenkins to an external system for browsing the details of those changes. The "Auto" selection attempts to infer the repository browser from other jobs, if supported by the SCM and a job with matching SCM details can be found.
The drop-down list of browsers here (Jenkins v1.609.1, Subversion Plug-in v2.5.1) contains:
Upvotes: 2
Reputation: 45077
This will likely depend on what software you're using for viewing repository changesets.
If you're using Trac, then Jenkins' Trac Plugin should be able to do what you're looking for. There are also plugins for systems like WebSVN and ViewVC.
Upvotes: 0