测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
Gitlab CI/CD----基本类型的流水线
收藏本文
作者:redrose2100 类别: 日期:2023-06-01 15:23:06 阅读:583 次 消耗积分:0 分
[【原文链接】Gitlab CI/CD----基本类型的流水线](http://devops-dev.com/article/635) (1)流水线定义多个阶段,每个阶段有一个Job,.gitlab-ci,yml 配置如下 ```yaml stages: - compile - build - deploy - test - release compile: stage: compile script: - echo "begin to compile" tags: - shell_gitlab build: stage: build script: - echo "begin to build" 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: stage: release script: - echo "begin to release" tags: - shell_gitlab ``` 流水线如下图所示,按照阶段顺序执行 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/af3423c6-004c-11ee-b6d3-0242ac110004.png) (2)流水线中有多个阶段,每个阶段中可能有多个任务,.gitlab-ci.yml配置如下所示。 ```yaml 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 ``` 流水线如下图所示,此时按照阶段执行,即上一个阶段的Job全部执行完成后,才会执行下一个阶段的Job ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/1a0e4d16-004d-11ee-b6d3-0242ac110004.png)
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/635
上一篇:
Ai标题海报 大标题造字
下一篇:
Gitlab CI/CD----DAG类型的流水线
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件