Id:....的任务定义的任务执行部分丢失或无效

时间:2018-09-26 12:09:20

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

我有一个包含两个连续任务的Azure Pipelines定义

  1. 运行构建
  2. 质量检查工作的手动批准步骤(取决于构建)

azure-pipelines.yml中:

jobs:
- job: Build
  ...
- job: QualityAssurance
  pool: server

  dependsOn: Build
  steps:
  - task: ManualIntervention@8
    inputs:
      instructions: Instructions for quality assurance and approval are here

运行管道时,出现以下错误:

Task execution section of task definition for Id : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx is either missing or not valid.

根据ManualInterventionV8的文档,没有必需的参数。

任何想法可能有什么问题吗?

1 个答案:

答案 0 :(得分:1)

似乎在构建管道中尚不支持。

来自https://developercommunity.visualstudio.com/content/problem/356708/cannot-use-manualintervention.html

  

根据此文档:https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/manual-intervention?view=vsts#demands,手动干预任务现在无法在构建管道中支持,请更改其他任务以替换它。