Hi,
I'm looking to poll repository for changes, determine if change was made, find URL of change in SVN and extract the URL. Ideally, this would all be in one build plan.
For example, if developer checks in code to Code/ABC/MR3 then I want Code/ABC/MR3/build.xml to run. If developer checks in code to Code/ABC/MR1 then Code/ABC/MR1/build.xml should run. However, I only want one build plan monitoring Code/ABC.
Use svn command line from whatever SVN client application you use (TortoiseSVN, CollabNet, etc.)
"C:\Program Files\TortoiseSVN\bin\svn.exe" diff -r PREV:COMMITTED --summarize
By default this uses the current directory, you can specify a checked out directory or svn repository by including it as an additional parameter, no flag.
You also have a --xml option if you want xml output. This will give you the changelist from the latest revision checked out. You'll still have to write scripts around it to make it work.
Since this only checks the latest revision, it is possible with polling periodically and/or a single builder to "skip" revisions and over look their changes so you make need to improve the call more to your needs. "PREV" could be replaced with the last built revision is you can store that somewhere.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.