Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have seen some duplicate questions but the answers didn't seem to help. The following is what I need: I have the upstream Job A and its downstream Job B. I use parameterized trigger plugin to kick off Job B once Job A finishes successfully.

I want the kicked off Job B to have the same build number and use the same SVN revision which Job A used to simplify things (Both jobs use separate workspaces BTW.)

Under Job A, I checked the "Trigger parameterized build on other projects" and added the subversion revision and current build parameters to the parameters for Job B when stable.

Under Job B, I checked the "This build is parameterized" and used SVN_REVISION as a string parameter with default HEAD; and BUILD_NUMBER as a run parameter of Job A. Under SCM, for SVN url, I entered: http:// svn-path-here/trunk@$SVN_REVISION

Doing this always pulls the HEAD and uses different build number. Any help is appreciated. Thanks.

share|improve this question

1 Answer

To pass Job-A's BUILD_NUMBER to Job-B as SVN_REVISION
you need to confirm the following in Job-A :

  1. Under Trigger parameterized build... properties, have a Predefined parameters section

  2. In that Predefined parameters section, add the following line:
    SVN_REVISION=${BUILD_NUMBER}

  3. SVN_REVISION should be defined as a parameter of Job-B, as you have mentioned.

Good luck!

share|improve this answer
The downstream job continues to keep pulling the HEAD instead of the $SVN_REVISION. Any idea why? – user1497417 Sep 25 '12 at 23:27
Suggest you run a quick test - see if you can 'echo' the value of ${SVN_REVISION} (or %SVN_REVISION% on Windows). Maybe the plugin expects the value to be written differently? Maybe there is a typo in the parameter-names somewhere? – Gonen Sep 27 '12 at 10:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.