0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Azure Pipelineで2つ連結させて動かす

Posted at

Azure Pipelineを使う機会があったのでメモしておきます。
Pipeline1Pipeline2があるとしてPipeline1の完了をトリガーにしてPipeline2を動かすように構成を行いました。

こちらの公式の記事を参考にしました。
パイプラインを 1 つずつトリガーする

Pipeline2のyamlは以下の様に記載しました。
resourcesにそれぞれ設定をしていきます。

  • pipeline: パイプライン名
  • source : トリガーとなるパイプライン名(フォルダ名から指定しないといけないので注意!)
  • trigger : パイプライン完了トリガーを有効にする
trigger: none

resources:
    pipelines:
        - pipeline: Pipeline2
          source: deploy\prd\Pipeline1
          trigger: true
pool:
    vmImage: ubuntu-latest

jobs:
    - job: e2e
    - ......
    - ......

branchesを指定してreleaseフォルダにマージされたときのみ動作させることなども可能です。

成功すると、Automatically triggerd by ...のようになります。
image.png

私の場合はこれで動作させることができました。

ただし、1点問題が発生しました。variablesに環境変数を設定していたのですが、Pipeline1の環境変数がそのまま Pipeline2に引き継がれる形となってしまいました。ですのでいったんの対策として、yamlの中に直接記入することで上書きをしてくれました。

variables: 
    target: './tests/basic/'
    tenantId: 'e2ebasic'
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?