TFS 2015发布管理访问构建变量

时间:2016-08-22 08:58:01

标签: tfs2015 release-management

在TFS 2015中,我们有一个构建版本,它将自动触发新版本。 它是通过新的script based build definitions实现的。

现在我想将一个用户变量从build传递给release。 我在构建中创建了一个变量“Branch”。

enter image description here

在自动触发的版本中,我尝试访问它。但它总是空的/没有设置。

我使用$(Branch)$(Build.Branch)进行了尝试。 我还尝试使用这些名称在发布中创建变量,但没有成功。

是否有机会从发布版本中的构建定义中访问用户变量?

1 个答案:

答案 0 :(得分:4)

我现在使用一些自定义PowerShell脚本。

在构建任务中,我在发布任务中编写了一个包含我需要的变量的XML文件。 XML文件稍后是Artifact的一部分。

首先,我使用XML文件的路径,变量名称和当前值调用我的自定义脚本:

enter image description here

powershell脚本是这样的。

Param
(
  [Parameter(Mandatory=$true)]
  [string]$xmlFile,

  [Parameter(Mandatory=$true)]
  [string]$variableName,

  [Parameter(Mandatory=$true)]
  [string]$variableValue
)

$directory = Split-Path $xmlFile -Parent
If (!(Test-Path $xmlFile)){
  If (!(Test-Path $directory)){
    New-Item -ItemType directory -Path $directory
  }
  Out-File -FilePath $xmlFile
  Set-Content -Value "<Variables/>" -Path $xmlFile
}

$xml = [System.Xml.XmlDocument](Get-Content $xmlFile);
$xml["Variables"].AppendChild($xml.CreateElement($variableName)).AppendChild($xml.CreateTextNode($variableValue));
$xml.Save($xmlFile)

这将产生如下的XML:

<Variables>
  <Branch>Main</Branch>
</Variables>

然后我将其复制到工件临时目录,以便它是工件的一部分。

在发布任务中,我使用另一个powershell脚本,它通过读取xml来设置任务变量。

第一个参数是xml文件的位置,第二个参数是任务变量(你必须在发布管理中创建变量),最后一个是xml中的节点名。

enter image description here

PowerShell读取xml并设置变量是这样的:

Param
(
  [Parameter(Mandatory=$true)]
  [string]$xmlFile,

  [Parameter(Mandatory=$true)]
  [string]$taskVariableName,

  [Parameter(Mandatory=$true)]
  [string]$xmlVariableName
)

$xml = [System.Xml.XmlDocument](Get-Content $xmlFile);
$value = $xml["Variables"][$xmlVariableName].InnerText

Write-Host "##vso[task.setvariable variable=$taskVariableName;]$value"