如何在Microsoft托管代理池上的Azure Pipelines上实现作业的实际并行执行?

时间:2018-09-17 13:46:17

标签: azure-devops azure-pipelines

我有一个非常简单但很慢(〜15分钟)的节点测试,我想在Ubuntu和Linux上运行,并且分别在节点6、8和10上运行-通过Azure管道总共6个“工作”在Azure DevOps上。

我的azure-pipeline.yml如下:

jobs:
- job: Ubuntu
  pool:
    vmImage: 'Ubuntu 16.04'
  strategy:
    matrix:
      node_6_x:
        node_version: 6.x
      node_8_x:
        node_version: 8.x
      node_10_x:
        node_version: 10.x
  steps:
  - task: NodeTool@0
    inputs:
      version: $(node_version)
    displayName: 'Install Node.js $(node_version)'  
  - script: |
      npm install
    displayName: 'npm install'
  - script: |
      npm run test
    displayName: 'npm test'
- job: Windows
  pool:
    vmImage: 'vs2017-win2016'
  strategy:
    matrix:
      node_6_x:
        node_version: 6.x
      node_8_x:
        node_version: 8.x
      node_10_x:
        node_version: 10.x
  steps:
  - task: NodeTool@0
    inputs:
      version: $(node_version)
    displayName: 'Install Node.js $(node_version)'  
  - script: |
      npm install
    displayName: 'npm install'
  - script: |
      npm test
    displayName: 'npm test'

由于这是GitHub上的开放源代码存储库,所以我希望这6次测试运行可以并行进行(因为应该有10个并行作业)。

观察将azure-pipeline.yml添加到我的存储库中的pull请求的流水线运行,似乎似乎只是有时候似乎正在进行一些并行处理。我经常等几分钟开始任何工作。这可能是Azure管道方面的容量问题,没有可用的代理来运行测试吗?

启动某件事时,每个操作系统通常只有一项工作,而matrix中的其他任务是“未启动/已排队”。 matrix个作业不应该并行执行吗?


这将我带到我真正的问题:
有没有办法在Microsoft托管的代理池上的Azure Pipelines上实现作业的实际并行执行?

1 个答案:

答案 0 :(得分:3)

更改

  strategy:
    matrix:
      node_6_x:
        node_version: 6.x
      node_8_x:
        node_version: 8.x
      node_10_x:
        node_version: 10.x

  strategy:
    maxParallel: 3
    matrix:
      node_6_x:
        node_version: 6.x
      node_8_x:
        node_version: 8.x
      node_10_x:
        node_version: 10.x

(请注意附加的maxParallel: 3)似乎已经完成了工作:现在,一旦对PR分支进行了提交,构建就一起开始了。

虽然maxParallel当前仅记录为"restricts the amount of parallelism.",但似乎完全需要为matrix配置获得并行性。

Job in the YAML schema的文档无济于事,因为它显示maxParallelmatrixparallel的替代品。)