Gurus,
I am using windows jenkins and linux SVN to build java code using maven.
My requirements is to validate to proceed with build execution in jenkins job after verifying that is there no specific list of files are changed in latest triggered job.
if specific file is present we should get promot to continue job.
I know i can use command
svn diff -r REV:HEAD --summarize | findstr /g:"filesname.list"
how to get the last successful build SVN revision and latest checked out revision from jenkins in script at run time ?
Also how pre buld script in jenkins job provide me interface to give my goahead decison to continue job?