【发布时间】:2020-03-06 08:37:11
【问题描述】:
如何查看矩阵策略中单个作业的状态?
jobs:
- job: A
strategy:
matrix:
nonprod:
environment: test
prod:
environment: prod
steps:
- pwsh: Write-host something random
- job: B
dependsOn: A
condition: how do I check only the prod portion of the Job A ?
steps:
- pwsh: Write-Host this should run regardless of nonprod matrix portion, but only if prod has succeeded.
【问题讨论】:
标签: azure-devops azure-pipelines azure-devops-server-2019 azure-devops-server