How to kickoff a build after another one is finishes?
Accepted answer
One other answer
There is not a way to configure the build definitions so that the RTC server will automatically start a second build once the first build is complete. Instead, you will have to code that yourself in your build script.
You will want to use the requestTeamBuild Ant task. http://pic.dhe.ibm.com/infocenter/clmhelp/v4r0/index.jsp?topic=%2Fcom.ibm.team.build.doc%2Ftopics%2Fr_requestBuild.html
The Ant script that is driving the first build should use the requestTeamBuild task to start the second build. The requestTeamBuild task should happen near the end of the first build, and only if the first build is successful.
-- David Olsen, IBM Rational, Jazz Process Team