是否可以使用经典 UI 在 for 循环中 运行 Azure DevOps 管道任务?
Is it possible to run Azure DevOps pipeline tasks in for loop using Classic UI?
我有使用 UI 配置的管道(不直接使用 yaml 文件)。我有许多不同的配置变体,对于其中的每一个,我都必须 运行 在此管道中使用相同的单独任务。我发现可以使用 yaml 文件,但找不到有关 UI 方法的任何信息。以为我可以从那里 运行 powershell 任务和 运行 其他任务。
但是,截至目前,不支持使用经典 UI 管道的 for 循环中的 运行ning 任务。您需要多次添加任务,让它们 运行 倍数。
好消息是您可以使用任务组来简化此过程。
A task group allows you to encapsulate a sequence of tasks, already defined in a pipeline, into a single reusable task that can be added to a pipeline, just like any other task. You can choose to extract the parameters from the encapsulated tasks as configuration variables, and abstract the rest of the task information.
点击Task groups for builds and releases查看详细步骤。
我有使用 UI 配置的管道(不直接使用 yaml 文件)。我有许多不同的配置变体,对于其中的每一个,我都必须 运行 在此管道中使用相同的单独任务。我发现可以使用 yaml 文件,但找不到有关 UI 方法的任何信息。以为我可以从那里 运行 powershell 任务和 运行 其他任务。
但是,截至目前,不支持使用经典 UI 管道的 for 循环中的 运行ning 任务。您需要多次添加任务,让它们 运行 倍数。
好消息是您可以使用任务组来简化此过程。
A task group allows you to encapsulate a sequence of tasks, already defined in a pipeline, into a single reusable task that can be added to a pipeline, just like any other task. You can choose to extract the parameters from the encapsulated tasks as configuration variables, and abstract the rest of the task information.
点击Task groups for builds and releases查看详细步骤。