New to TeamCity. I have multiple build steps. Step 3 generates an id that is needed in step 4. What is the best way to pass the id (a string) between step 3 and step 4? The build steps are written in Ruby. Can I set an environment variable?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Yes, you can set an environment variable in one build step and use it in the following step. You will need to use a service message in your build script as described here http://confluence.jetbrains.net/display/TCD65/Build+Script+Interaction+with+TeamCity#BuildScriptInteractionwithTeamCity-AddingorChangingaBuildParameterfromaBuildStep to dynamically update a build parameter, which you can use in the next step. Note, that it won't be available in the step that generates it, only in the next one.

link|improve this answer
Maria, thank you for the pointer. I set the following in the ruby program executed by my TeamCity build step 3 puts "##teamcity[setParameter name='env.USER_DATETIME' value='#{DateTime.now}']" and I set the following in the ruby program executed by my TeamCity build step 4 puts "... USER_DATETIME = '#{ENV['USER_DATETIME']}'" And it worked! – Mike Jr Nov 23 '11 at 21:02
I'm glad it helped=) – Maria Khalusova Nov 23 '11 at 21:28
feedback

Your Answer

 
or
required, but never shown

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