TFS 2015版本管理访问构建变量
在TFS 2015中,我们有一个构建版,它会自动触发一个新版本。 它是基于新的基于脚本的构建定义实现的。
现在我想将一个用户变量从构建传递给release。 我在构建中创建了一个变量“分支”。
在自动触发的版本中,我尝试访问它。 但它总是空的/没有设置。
我用$(Branch)
和$(Build.Branch)
试了一下。 我也尝试用这些名字在发行版中创建一个变量,但没有成功。
有没有机会从发布版的构建定义中访问用户变量?
我现在用一些自定义的powershell脚本来做。
在构建任务中,我使用发布任务中需要的变量编写XML文件。 XML文件稍后是Artifact的一部分。
所以首先我使用XML文件的路径,变量名称和当前值调用我的自定义脚本:
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中的节点名称。
读取xml和设置变量的powershell是这样的:
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"
链接地址: http://www.djcxy.com/p/92883.html