GetStageLabel
Description
Returns the DevOps Code ClearCase® label used to uniquely identify each build.
Note: The return value for
this method does not appear in the same format for Windows, UNIX systems
and Linux.
Syntax
Perl
$prodinfo->GetStageLabel();
- Identifier
- Description
- prodinfo
- A CQProductInfo object.
- Return value
- A String containing the stage label of the build (for example, CQ.OM.200110291206).
Example
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "StageLabel = '".$prodinfo->GetStageLabel()."'\n";
CQSession::Unbuild($cqobject);