Skip to content

Commit

Permalink
Integrate track before fsp-CI run triggers
Browse files Browse the repository at this point in the history
Change-Id: If15c2e7ccdf23ef0125f2566b17f3c8b5d399465
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/56323
Reviewed-by: Prachi Gupta <pragupta@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
Sameer Veer authored and dcrowell77 committed Mar 28, 2018
1 parent 9440862 commit 9ef8d33
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/build/tools/hbRelease
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,9 @@ sub execute_pre_release
#Complete Fix Records
run_system_command("Fix -complete -feature $feature -release $release -component esw_hbfw -verbose");

#Integrate the track
run_system_command("Track -integrate -feature $feature -release $release -verbose");

#Get ClearQuest ID
my $response = run_system_command("Feature -view $feature");
my ($cq_id) = $response =~ /CQID\s+(.*)/;
Expand Down Expand Up @@ -704,6 +707,9 @@ sub execute_checkinBuildToTrack
print "#####-> run_system_command(\"Fix -complete -feature $feature -release $release -component esw_hbfw -verbose\")\n";
run_system_command("Fix -complete -feature $feature -release $release -component esw_hbfw -verbose");

#Integrate the track
run_system_command("Track -integrate -feature $feature -release $release -verbose");

#Get ClearQuest ID
my $response = run_system_command("Feature -view $feature");
my ($cq_id) = $response =~ /CQID\s+(.*)/;
Expand Down Expand Up @@ -733,9 +739,6 @@ sub execute_post_release
#Check for HW image coreq and prereq
hw_req_check($level, $released);

#Integrate the track
run_system_command("Track -integrate -feature $feature -release $release -verbose");

#Get ClearQuest ID
my $response = run_system_command("Feature -view $feature");
my ($cq_id) = $response =~ /CQID\s+(.*)/;
Expand Down

0 comments on commit 9ef8d33

Please sign in to comment.