gpt4 book ai didi

azure - 如何区分azure DevOps构建管道中的分支触发器和计划触发器

转载 作者:行者123 更新时间:2023-12-02 06:15:58 25 4
gpt4 key购买 nike

我想在构建管道中为分支触发器和计划触发器运行不同的作业。

分支触发器 => 运行作业 1

计划触发器 => 运行作业 2

有什么方法可以区分触发器吗?这样我就会根据这种不同的条件来运行我的工作。

我的思考过程

我正在考虑在计划触发期间设置变量,因此我可以在工作条件评估中使用该变量。但我无法设置变量。

# Sample azure-build-pipeline.yml file


variables:

# by default the variable is false
isScheduledTrigger: false


trigger:
- develop
- master

schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
branches:
include:
- develop
always: true
# somewhere here i want to set the isScheduledTrigger variable to TRUE

jobs:
- job: Branch trigger job
condition: or(eq(variables['Build.SourceBranchName'], 'develop'),eq(variables['Build.SourceBranchName'], 'master'))
steps:
# Multiple steps for branch trigger



- job: Scheduled trigger job
condition: and(eq(variables['Build.SourceBranchName'], 'develop'),eq(variables['isScheduledTask'], True))
steps:
# Multiple steps for scheduled trigger


最佳答案

您可以使用名为 Reason 的变量来区分触发器的类型

condition: and(succeeded(), and(not(eq(variables['Build.Reason'], 'PullRequest')), not(eq(variables['Build.Reason'], 'Schedule'))))

关于azure - 如何区分azure DevOps构建管道中的分支触发器和计划触发器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61308555/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com