Gitlab CI/CD----DAG类型的流水线

【原文链接】Gitlab CI/CD----DAG类型的流水线

DAG类型流水线全称Directed Acyclic Graph Piplines,即无环的有向图类型的流水线,简单点来说就是在基本类型的流水线的基础上通过needs关键字指定某个Job只依赖上一阶段的某一个Job,进而可以大幅提升流水线的执行效率。
编辑如下配置文件

stages:
  - compile
  - build
  - deploy
  - test
  - release


compile_java:
  stage: compile
  script:
    - echo "begin to compile java"
  tags:
   - shell_gitlab
   
compile_c:
  stage: compile
  script:
    - echo "begin to compile c"
    - sleep 10
  tags:
   - shell_gitlab


compile_node:
  stage: compile
  script:
    - echo "begin to compile node"
  tags:
   - shell_gitlab

build_java:
  stage: build
  needs:
    - compile_java
  script:
    - echo "begin to build java"
  tags:
   - shell_gitlab

build_c:
  stage: build
  needs:
    - compile_c
  script:
    - echo "begin to c"
  tags:
   - shell_gitlab

build_node:
  stage: build
  needs:
    - compile_node
  script:
    - echo "begin to node"
  tags:
   - shell_gitlab


deploy:
  stage: deploy
  script:
    - echo "begin to deploy"
  tags:
   - shell_gitlab

test:
  stage: test
  script:
    - echo "begin to test"
  tags:
   - shell_gitlab

release_java:
  stage: release
  script:
    - echo "begin to releas javae"
  tags:
   - shell_gitlab

release_c:
  stage: release
  script:
    - echo "begin to releas c"
  tags:
   - shell_gitlab

release_node:
  stage: release
  script:
    - echo "begin to releas node"
  tags:
   - shell_gitlab

流水线执行结果如下,可以看到在此流水线中,compile_c的Job尚未执行完,而build_java和build_node都已经执行完成了。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

redrose2100

您的鼓励是我最大的创作动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值