7

要求

因此,Azure DevOps 中有一些新功能允许管道触发其他管道,并在此处记录:https ://docs.microsoft.com/en-us/azure/devops/pipelines/build/triggers?view=azure- devops&tabs=yaml#pipeline-triggers-1听起来不错,除了我无法获得所需的行为。我想在同一个存储库中有 2 个管道:

  • 管道 A:仅由其自己的 repo 之外的多个其他管道触发,但在同一个项目中。由于被触发,它对自己的 repo 进行了更改,因此触发了管道 B。
  • 管道 B:仅由对其自己的 repo 的更改触发,并且在触发时继续执行它需要做的任何事情

管道 A 语法

resources:
    pipelines:
    - pipeline: database
      source: database
      trigger:
        branches:
        - develop
        - release/*
        # The stages filter should work, according to: https://docs.microsoft.com/en-us/azure/devops/pipelines/build/triggers?view=azure-devops&tabs=yaml
        # However, this error occurs when specifying: /azure-pipelines.yml (Line: 8, Col: 15): Stage filters in pipeline resource database is not supported.
        #stages:
        #- Build
    - pipeline: auth
      source: auth
      trigger:
        branches:
        - develop
        - release/*
    - pipeline: api
      source: api
      trigger:
        branches:
        - develop
        - release/*
    - pipeline: web
      source: web
      trigger:
        branches:
        - develop
        - release/*
  ... multiple triggers - 9 in total
stages:
  ...

当前行为

管道 A 不会由任何其他管道触发,而只会在其自己的存储库发生更改时触发。由于无论如何它都会更改自己的存储库,因此它会在无限循环中触发自己。

问题/评论

  • Pipeline A 的语法是否正确?
  • 来自文档:“但是,如果两个管道使用不同的存储库,那么触发的管道将使用其默认分支中最新版本的代码。” 我假设这意味着来自默认分支的 yaml 管道将被激活。我们真的有那么一点点控制权吗?在管道声明中指定目标分支会好得多。
  • 是否有可能以某种方式获得触发管道的源分支?
  • 为什么阶段过滤器不像记录的那样工作?
  • 在管道 A 中,为了停止循环,我尝试使用 $(Build.TriggeredBy.DefinitionId) 检查它是否与 $(System.DefinitionId) 相同,如果是则跳过构建步骤,但是 $(Build.TriggeredBy.DefinitionId ) 没有价值
  • 如果我不能让它工作,我倾向于让其他管道触发管道 A。

发现

4

3 回答 3

10

工作解决方案

因为我的所有构建都集中在一个管道模板中,所以我更改了此模板以在成功发布工件时触发我的管道 A。这是管道触发代码,它几乎是逐字逐句来自(https://docs.microsoft.com/en-us/azure/devops/cli/azure-devops-cli-in-yaml?view=azure-devops),除了从最后几个步骤:

# Updating the python version available on the linux agent
    - task: UsePythonVersion@0
      displayName: Upgrade build agent Python version
      inputs:
        versionSpec: '3.x'
        architecture: 'x64'

    # Updating pip to latest
    - script: python -m pip install --upgrade pip
      displayName: 'Upgrade pip'

    # Updating to latest Azure CLI version.
    - script: pip install --pre azure-cli --extra-index-url https://azurecliprod.blob.core.windows.net/edge
      displayName: 'Upgrade azure cli'

    - script: az --version
      displayName: 'Show Azure CLI version'

    - script: az extension add -n azure-devops
      displayName: 'Install Azure DevOps Extension'

    - script: echo ${AZURE_DEVOPS_CLI_PAT} | az devops login
      env:
        AZURE_DEVOPS_CLI_PAT: $(System.AccessToken)
      displayName: 'Login Azure DevOps Extension'

    - script: az devops configure --defaults organization=$(System.TeamFoundationCollectionUri) project="$(System.TeamProject)" --use-git-aliases true
      displayName: 'Set default Azure DevOps organization and project'

    - script: |
        set -euo pipefail
        if [[ "$(Build.SourceBranch)" == *"/release/"* ]]; then
          branchName="master"
        else
          branchName="develop"
        fi
        commandLine="--branch $branchName --name <YourPipelineName>"
        echo "Triggering release creation with: az pipelines run $commandLine"
        az pipelines run $commandLine
      displayName: Trigger release build for internal (develop) and external (release) builds

注意事项

  • 酌情更改<YourPipelineName>,您的分支名称处理将与我的不同
  • Azure CLI 升级需要 1.5 分钟,因此如果您想显着加快升级速度,只需删除前 3 个步骤
  • 我宁愿触发管道声明自己的触发器,因为如果您能看到导致它触发的原因,它更容易维护,但是嘿嘿
于 2020-01-04T21:58:22.323 回答
2

我遇到了同样的问题。我在这里找到了解决方案: https ://developercommunity.visualstudio.com/content/problem/864701/pipeline-trigger-not-working-as-expressed-in-docum.html?childToView=897210#comment-897210

简而言之,当我将依赖管道中的 defaultBranch 更改为我的工作分支时,触发开始工作。:你需要去:

Edit -> Triggers (3 dots in right upper corner) -> YAML -> Get sources -> Default branch for manual and scheduled builds

在那里放置一个分支,其中存在您的 yaml 管道。 默认分支

于 2020-02-04T13:48:27.763 回答
0

如果您没有从触发管道发布工件,则不会触发触发的管道。我已经创建了一个可行的最小可行产品,并且我已经在这个答案中解释了这个过程。

于 2020-04-23T23:51:25.413 回答