Rename Phabricator Variables Injected to TC builds
To make sure there are no naming conflicts with teamcity environment variable we are renaming the vars injected to the build via the harbormaster trigger.
This commit is contained in:
parent
5f25b065aa
commit
265318a9ce
1 changed files with 5 additions and 5 deletions
|
@ -24,12 +24,12 @@ final class TeamCityXmlBuildBuilder {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addPhabBuildId($buildId){
|
function addPhabBuildId($buildId){
|
||||||
$this->addProperty("env.buildId", $buildId);
|
$this->addProperty("env.PHAB_BUILD_ID", $buildId);
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function addRevisionId($revisionId){
|
function addRevisionId($revisionId){
|
||||||
$this->addProperty("env.revisionId", $revisionId);
|
$this->addProperty("env.PHAB_REVISION_ID", $revisionId);
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,18 +37,18 @@ final class TeamCityXmlBuildBuilder {
|
||||||
// $this->
|
// $this->
|
||||||
// root->
|
// root->
|
||||||
// setAttribute('branchName', $branchName);
|
// setAttribute('branchName', $branchName);
|
||||||
$this->addProperty("env.branchName", $branchName);
|
$this->addProperty("env.PHAB_BRANCH_NAME", $branchName);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function addHarbormasterPHID($phid){
|
function addHarbormasterPHID($phid){
|
||||||
$this->addProperty('env.harbormasterTargetPHID', $phid);
|
$this->addProperty('env.PHAB_HARBORMASTER_TARGET_PHID', $phid);
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function addDiffId($diffId){
|
function addDiffId($diffId){
|
||||||
$this->addProperty('env.diffId', $diffId);
|
$this->addProperty('env.PHAB_DIFF_ID', $diffId);
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue