Philip Pellouchoud
Philip Pellouchoud

Reputation: 21

Having Jenkins show Subversion changes with hyperlinks that show differences

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

Answers (2)

Gerold Broser
Gerold Broser

Reputation: 14772

See <your project's config> → Source Code ManagementSubversionRepository 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:

  • Assembla
  • CollabNet
  • FishEye
  • SVN::Web
  • Sventon 1.x/2.x
  • ViewSVN
  • WebSVN

Upvotes: 2

bta
bta

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

Related Questions