Azure DevOps的variable group实现array和hashtable参数的传递
Posted yangwenbo214
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Azure DevOps的variable group实现array和hashtable参数的传递相关的知识,希望对你有一定的参考价值。
Azure Devops中的variable group建议或者只能(?)添加string类型的value。基于此我们想在variable group实现array或者hashtable的传递的核心思路就是先定义出合适易转换的字符串,
然后将字符串转为我们想要的array和hashtable。为了测试,我在的variable group中预先添加了arraystring 和 hashstring,一定要注意我设置的方法,value值格式会影响整个过程。
利用rest api 去get一下值,我们可以得到如下:
PS C:\\Users\\wenbo> $group.variables arraystring hashstring ----------- ---------- @value=wbubuntu,wbubuntu2 @value=@"key"="value";"key2"="value2"
我们看下类型:
PS C:\\Users\\wenbo> $group.variables.arraystring.value.GetType() IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True String System.Object PS C:\\Users\\wenbo> $group.variables.hashstring.value.GetType() IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True String System.Object
两个都是string,在做参数传递的时候,我们希望值是array和hashtable
1.转array string,此处的转换方法和你写的value值有关系,自己对应即可
PS C:\\Users\\wenbo> $array = $group.variables.arraystring.value.Split(",") PS C:\\Users\\wenbo> $array wbubuntu wbubuntu2 PS C:\\Users\\wenbo> $array.GetType() IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True String[] System.Array
2.转hashtable
PS C:\\Users\\wenbo> $hash = Invoke-Expression $group.variables.hashstring.value PS C:\\Users\\wenbo> $hash Name Value ---- ----- key value key2 value2 PS C:\\Users\\wenbo> $hash.GetType() IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True Hashtable System.Object
以上是关于Azure DevOps的variable group实现array和hashtable参数的传递的主要内容,如果未能解决你的问题,请参考以下文章
Azure DevOps 管道条件 - 为啥包含“并且始终”?
在 Azure DevOps Pipeline 模板中使用变量
Azure DevOps 如何在发布时替换服务结构项目的 Cloud.xml 参数中的值,这些值作为变量保存
如何将 Azure DevOps Extension for Azure CLI 与 Azure DevOps Server 一起使用?