r6 - 2015-05-27 - 16:33:35 - Main.sbagotYou are here: TWiki >  Deployment Web > DeploymentTroubleshooting > IntegrationsTroubleshooting > JenkinsAndHudson > PostBuildandJenkins

When selecting Post Build activities in the Build definition, after the build is complete no Post Build activities are triggered.

Authors: IntegrationsTroubleshootingTeam
Build basis: Rational Team Concert 4.x and later

Subsequent analysis steps.

  • You need to invoke the Jazz ant participant com.ibm.team.build.autoDeliver in build.xml in a target after all the necessary build targets are completed.
  • The Jazz Build Engine participant step should be invoked from the Ant script using an EXEC block, so it will be able to access the variables necessary for the build.

Example command :

<target name="Deliver">
     <exec executable="cmd">
       <arg value="/c"/>
       <arg value="C:\PathToBuildToolKit\jazz\buildsystem\buildengine\eclipse\jbe.exe -userId ${Build_User} -pass ${Build_pass} -repository https://<host>:9443/ccm -buildResultUUID ${buildResultID} -engineId ${engineId} -participants com.ibm.team.build.autoDeliver -noComplete -verbose"/>
     </exec>
   </target>

Use case Example: if you are using the sample provided in Integrating with Jazz SCM and Builds from Hudson and Jenkins you need to modify build.xml to invoke the participant autoDeliver

   <target name="runBuild" depends="compile, test">
       <exec executable="cmd">
        <arg value="/c"/>
       <arg value="C:\JazzBuild\jazz\buildsystem\buildengine\eclipse\jbe.exe -userId ${userId} -pass ${password} -repository https://9.142.63.252:9443/ccm -buildResultUUID ${buildResultID} -engineId jenkins.local1 -participants com.ibm.team.build.autoDeliver -noComplete -verbose"/>
       </exec>
   </target>

Note: This participant does not get invoked when you define the Post Build activities in the Build definition. This needs to be invoked in a target for Post Build to work in RTC.

Related topics:

External links:

Additional contributors: ZeeshanChoudhry

Edit | Attach | Printable | Raw View | Backlinks: Web, All Webs | History: r6 < r5 < r4 < r3 < r2 | More topic actions
 
This site is powered by the TWiki collaboration platformCopyright © by IBM and non-IBM contributing authors. All material on this collaboration platform is the property of the contributing authors.
Contributions are governed by our Terms of Use. Please read the following disclaimer.
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.