如何在池需求中使用矩阵变量?

时间:2018-11-06 12:12:21

标签: azure-devops azure-pipelines azure-pipelines-build-task

对于Azure Pipelines yaml文件,我想在某个池中的每个代理上一次运行一组任务。当我查看工作策略矩阵时,它看起来是一个很好的解决方案,但目前无法获取我为此使用的变量。

与此问题相关的管道yaml文件是以下部分:

resources:
- repo: self

trigger: none

jobs:
- job: RunOnEveryAgent
  strategy:
    maxParallel: 3
    matrix:
      agent_1:
        agentName: Hosted Agent
      agent_2:
        agentName: Hosted VS2017 2
      agent_3:
        agentName: Hosted VS2017 3
  pool:
    name: Hosted VS2017
    demands:
    - msbuild
    - visualstudio
    - Agent.Name -equals $(agentName)

  steps:
  - (etc.)

使用此脚本,我尝试设置一个矩阵以在池中的三个代理中的每个代理上运行一次。但是,当我尝试在需求列表中引用该代理时,它不会选择它。实际的错误信息如下:

  

[错误1]在托管的VS2017池中找不到满足指定要求的代理:

     

msbuild

     

visualstudio

     

Agent.Name-等于$(agentName)

     

Agent.Version -gtVersion 2.141.1

如果我对代理名称进行硬编码,则可以起作用:

    demands:
    - msbuild
    - visualstudio
    - Agent.Name Hosted VS2017 3

是否支持在池需求中使用这些变量?还是应该使用其他变量或表达式?

2 个答案:

答案 0 :(得分:2)

parameters:
  - name: agentNames
    type: object
    default: []
jobs:
- job: RunOnEveryAgent
  strategy:
    matrix:
       ${{ each agentName in parameters.agentNames }}:
        ${{ agentName }}:
         agentName: ${{ agentName }}
  pool:
    name: Hosted VS2017
    demands:
    - msbuild
    - visualstudio
    - Agent.Name -equals $(agentName)

如果您以后希望添加更多代理,这将是更好的解决方案

答案 1 :(得分:1)

其中某些作业不支持变量,原因是它们的扩展顺序。

但是,您可以做的是为您的工作策略使用模板包含语法(https://docs.microsoft.com/en-us/azure/devops/pipelines/process/templates?view=azure-devops),并将agentname作为参数传递。

因此,您自己的YAML文件中的构建作业可能类似于:

parameters:
  agentName1: ''
  agentName2: ''
  agentName3: ''

jobs:
- job: RunOnEveryAgent
  strategy:
    maxParallel: 3
    matrix:
      agent_1:
        agentName: ${{ parameters.agentName1 }}
      agent_2:
        agentName: ${{ parameters.agentName2 }}
      agent_3:
        agentName: ${{ parameters.agentName3 }}
  pool:
    name: Hosted VS2017
    demands:
    - msbuild
    - visualstudio
    - Agent.Name -equals ${{ parameters.agentName3 }}

  steps:

您的主要azure-pipelines.yml然后更改为:

resources:
- repo: self

trigger: none

jobs:
  - template: buildjob.yml
    parameters:
      agentName1: 'Hosted Agent'
      agentName2: 'Hosted VS2017 2'
      agentName3: 'Hosted VS2017 3'