6、pipline 类型及触发方式

流水线类型参考文档: https://docs.gitlab.cn/jh/ci/pipelines/pipeline_architectures.html

1、流水线类型:

1、基本流水线(按照job个阶段执行)

yaml 复制代码
stages:
	- install
	- lint-code
	- build
	- deploy

job_install:
  stage: install
  tags: 
    - test
  script:
    - npm install
    
job_lint_code:
  stage: lint-code
  tags: 
    - test
  script:
    - npm run eslint
  allow_failure: true

2、DAG流水线(有向无环图流水线)

  • 关键词 needs

如果效率对您很重要,并且您希望一切都尽可能快地运行,则可以使用有向无环图(DAG)。 使用 needs关键字 定义作业之间的依赖关系。当系统知道您的作业之间的关系时,它可以尽可能快地运行所有内容,甚至在可能的情况下跳到后续阶段。

在下面的示例中,如果 build_a 和 test_a 比 build_b 和 test_b 快得多,即使 build_b 仍在运行,系统也会启动 deploy_a。

yaml 复制代码
stages:
  - build
  - test
  - deploy

image: alpine

build_a:
  stage: build
  script:
    - echo "This job builds something quickly."

build_b:
  stage: build
  script:
    - echo "This job builds something else slowly."

test_a:
  stage: test
  needs: [build_a]
  script:
    - echo "This test job will start as soon as build_a finishes."
    - echo "It will not wait for build_b, or other jobs in the build stage, to finish."

test_b:
  stage: test
  needs: [build_b]
  script:
    - echo "This test job will start as soon as build_b finishes."
    - echo "It will not wait for other jobs in the build stage to finish."

deploy_a:
  stage: deploy
  needs: [test_a]
  script:
    - echo "Since build_a and test_a run quickly, this deploy job can run much earlier."
    - echo "It does not need to wait for build_b or test_b."

deploy_b:
  stage: deploy
  needs: [test_b]
  script:
    - echo "Since build_b and test_b run slowly, this deploy job will run much later."

3、父子流水线

  • 关键词 trigger: include

使用场景 : 项目和使用文档是分离的,在部署项目的同时,也要更新使用文档

yaml 复制代码
stages:
  - triggers

trigger_a:
  stage: triggers
  trigger:
    include: a/.gitlab-ci.yml
  rules:     # 就是修改变动a下面的文件,就会触发这个 a下面的这个.yml, 不会执行trigger_b
    - changes:
        - a/*

trigger_b:
  stage: triggers
  trigger:
    include: b/.gitlab-ci.yml
  rules:
    - changes:
        - b/*

4、多项目流水线

  • 使用场景: 比如微前端,需要同时部署几个子应用
yaml 复制代码
trigger:
	stage: deploy
	trigger:
		project: root/minapp  #指向的其他应用项目
		branch: master
		stragegy: depend   #子流水线的状态会在父流水线显示出来

5、合并请求流水线

yaml 复制代码
build_a:
  stage: build
  script:
    - echo "This job builds something quickly."
	only:
		- merge_requests

2、流水线的触发

1、推送代码

2、定时触发

注释: 自定义时间: 21: 分钟 17:小时 15: 天数 10: 月份 *:每月

3、url 触发

场景:(使用机器人 or 发布平台)

  • curl
bash 复制代码
curl -X POST \
--fail \
-F token=TOKEN \
-F ref=REF_NAME \
http://gitlab.21silva.top:8090/api/v4/projects/3/trigger/pipeline
  • webhook (群机器人)
bash 复制代码
http://gitlab.21silva.top:8090/api/v4/projects/3/ref/REF_NAME/trigger/pipeline?token=TOKEN

4、手动

yaml 复制代码
job_deploy_main:
	stage: deploy
	image: docker
	tags: 
	- test
	script:
	- docker build -t testimageprod .
	- if [ $(docker ps -aq --filter name=mycicd-containerprod) ]; then docker rm -f mycicd-containerprod;fi
	- docker run -d -p 8082:80 --name mycicd-containerprod testimageprod
	environment:
		name: silvaProd
		url: 访问url
	only:
	- main
	when: manual
相关推荐
超哥--2 小时前
B站视频内容智能分析系统(九):React 前端与管理面板
前端·react.js·前端框架
Cutecat_5 小时前
视频字幕处理工具横向:提取模式 vs 编辑模式,该如何选择
android·前端·ios·语音识别
qq_422152575 小时前
PDF 加水印工具怎么选?2026 年文档版权保护方案对比
前端·pdf·github
kyriewen5 小时前
手写 Promise.all、race、any:不到 30 行代码,解决并发异步的所有姿势
前端·javascript·面试
brucelee1866 小时前
OpenClaw 浏览器控制(Chrome MCP)完整教程
前端·chrome
ct9787 小时前
React 状态管理方案深度对比
开发语言·前端·react
胡志辉的博客7 小时前
深入浅出理解浏览器事件循环:从一道输出题讲到 Chrome 源码
前端·javascript·chrome·chromium·event loop
代码不加糖7 小时前
js中不会冒泡的事件有哪些?
前端·javascript·vue.js
懂懂tty7 小时前
Vue2与Vue3之间API差异
前端·javascript·vue.js
AI焦点7 小时前
跨越协议鸿沟:Tool Use状态机从Anthropic到OpenAI兼容体系的适配要点
前端·人工智能