热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《触发管道并等待其从另一个管道完成》经验,为你挑选了1个好方法。

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

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

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

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

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

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

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

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

我可以这样做:

integration_test_dependency
  stage: integration_test_dependency
  script:
    - echo "Building and deploying API..."
    - curl.exe -X POST -F token= -F ref=develop 

integration_test
  stage: integration_test
  script:
    - echo "Now running the integration test that depends on the API deployment..."

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

有没有办法做到这一点?



1> sas..:

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

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  -p  

只需使用项目ID(而不是查找整个URL)并创建一个个人访问令牌即可,您可以在此处提供该令牌(最好通过秘密来完成此操作)。

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

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


推荐阅读
author-avatar
訫嬘風飛_487_519
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有