触发管道并等待其从另一个管道完成

时间:2017-06-02 19:50:19

标签: gitlab gitlab-ci

我有两个不同的项目存储库:我的应用程序存储库和API存储库。我的应用程序与API通信。

我想为我的应用程序设置一些集成和E2E测试。在运行这些测试时,应用程序将需要使用最新版本的API项目。

API项目已设置为在触发时进行部署

<div class="row">
    <div class="col-sm-6 mb-lg-2">
        <!-- column-small-50%, margin-bottom-large -->
    </div>
</div>

我的应用程序的集成测试工作设置如下:

deploy_integration_tests:
  stage: deploy
  script:
  - echo "deploying..."
  environment:
    name: integration_testing
  only:
    - triggers

我遇到的问题是触发器只排队API管道(两个项目都使用相同的运行器)并在API管道实际运行之前继续。

在尝试运行集成测试之前,有没有办法等待API管道运行?

我可以这样做:

integration_test
  stage: integration_test
  script:
    - echo "Building and deploying API..."
    - curl.exe -X POST -F token=<token> -F ref=develop <url_for_api_trigger>
    - echo "Now running the integration test that depends on the API deployment..."

但是,在继续进行integration_test阶段之前,仍然没有让API管道运行并完成。

有办法做到这一点吗?

4 个答案:

答案 0 :(得分:4)

我最近遇到了这个限制,并设置了一个可以重复使用的图像,使其成为一个简单的构建步骤:

https://gitlab.com/finestructure/pipeline-trigger

所以在你的情况下,使用我的图像看起来像这样:

integration_test
  stage: integration_test
  image: registry.gitlab.com/finestructure/pipeline-trigger
  script:
    - echo "Now running the integration test that depends on the API deployment..."
    - trigger -a <api token> -p <token> <project id>

只需使用项目ID(而不是必须找到整个网址)并创建一个个人访问令牌,您可以在此处提供(最好通过密码进行此操作)。

需要后者的原因是轮询管道状态。您可以在没有它的情况下触发,但获得结果需要API授权。

请参阅项目描述以获取更多详细信息以及管道触发器可以执行的其他操作。

答案 1 :(得分:3)

目前这是不可能的。 gitlab中存在一些关于此的问题:

你最好的办法就是解决其中一些问题。

答案 2 :(得分:1)

我错过了完全相同的功能,所以我编写了一个python3实用程序来完成它。

请参阅Python Commander on GitHub

答案 3 :(得分:0)

如果其他人在 ci yaml 中在触发管道上查找此信息,您可以使用关键字 depend 代替 strategy 以确保管道等待触发管道:

    trigger: 
      project: group/triggered-repo
      strategy: depend