gitlab集成CI/CD,shell方式部署

目录

1.首先安装好gitlab和gitlab-runner,这两个,看我以往的教程

[2.注册新的 Runner](#2.注册新的 Runner)

[3. 步骤](#3. 步骤)

[3.1 Enter the GitLab instance URL (for example, https://gitlab.com/):](#3.1 Enter the GitLab instance URL (for example, https://gitlab.com/):)

[3.2 Enter the registration token:](#3.2 Enter the registration token:)

[3.3 Enter a description for the runner:](#3.3 Enter a description for the runner:)

[3.4 Enter tags for the runner (comma-separated):](#3.4 Enter tags for the runner (comma-separated):)

[3.5 Enter optional maintenance note for the runner:](#3.5 Enter optional maintenance note for the runner:)

[3.6 以下是操作的全过程](#3.6 以下是操作的全过程)

[4.使用sudo gitlab-runner list 可以查看runner的list列表](#4.使用sudo gitlab-runner list 可以查看runner的list列表)

5.删除runner的list列表。

[5.1 找到/etc/gitlab-runner/,打开config.toml文件,逐个删除带[[runners]]的项即可,然后保存文件即可](#5.1 找到/etc/gitlab-runner/,打开config.toml文件,逐个删除带[[runners]]的项即可,然后保存文件即可)

7.上述步骤完成之后,我们就可以自定义我们的.gitlab-ci.yml文件了

8.上传之后,即可看到,gitlab会自动的集成CI/CD。


1.首先安装好gitlab和gitlab-runner,这两个,看我以往的教程

2.注册新的 Runner

复制代码
sudo gitlab-runner register

3. 步骤

3.1 Enter the GitLab instance URL (for example, https://gitlab.com/):

http://127.0.0.1:8089/(你的gitlab项目地址)

3.2 Enter the registration token:

GR1348941iujWBKn8Hyvk5pzLydny(项目的token,可以在runner那里找到)

3.3 Enter a description for the runner:

xingranserver\]: my-runner(项目的描述,可按照自己的意思去填) #### 3.4 Enter tags for the runner (comma-separated): tag,other-tg(标签,可以写多个,用逗号隔开,这个后面项目部署会用到) #### 3.5 Enter optional maintenance note for the runner: 回车 #### 3.6 以下是操作的全过程 ![](https://i-blog.csdnimg.cn/direct/860afad8049341d7ad5d3cc6af030407.png) ### 4.使用sudo gitlab-runner list 可以查看runner的list列表 ![](https://i-blog.csdnimg.cn/direct/ffb1c06349454ff69ad561fd86965918.png) ### 5.删除runner的list列表。 #### 5.1 找到/etc/gitlab-runner/,打开config.toml文件,逐个删除带\[\[runners\]\]的项即可,然后保存文件即可 ![](https://i-blog.csdnimg.cn/direct/69cffc0666514546b40906bf457c7100.png) ### 7.上述步骤完成之后,我们就可以自定义我们的.gitlab-ci.yml文件了 stages: - build - test - deploy build_job: stage: build tags: - tag script: - echo "Building the project..." # - ./build.sh test_job: stage: test tags: - tag script: - echo "Running tests..." # - ./test.sh deploy_job: stage: deploy tags: - tag script: - echo "Deploying application..." # - ./deploy.sh only: - testmain ### 8.上传之后,即可看到,gitlab会自动的集成CI/CD。 ![](https://i-blog.csdnimg.cn/direct/89643e132f594b1099d617568ede83af.png) 希望我的博文能对大家的学习有所帮助,谢谢你们的支持。

相关推荐
欧先生^_^4 分钟前
docker的文件系统Overlay2
运维·docker·容器
一只小白跳起来8 分钟前
重新安装VMware tools为灰色无法点击问题解决|读取电脑文件的共享文件夹方法
运维·ubuntu·vmware
长河16 分钟前
Kafka系列教程 - Kafka 运维 -8
运维·分布式·kafka
刘若水1 小时前
Linux: 进程信号初识
linux·运维·服务器
阳小江2 小时前
Docker知识点
运维·docker·容器
只是橘色仍温柔3 小时前
xshell可以ssh连接,但vscode不行
运维·vscode·ssh
IT里的交易员3 小时前
【系统】换硬盘不换系统,使用WIN PE Ghost镜像给电脑无损扩容换硬盘
运维·电脑
共享家95274 小时前
深入剖析Linux常用命令,助力高效操作
linux·运维·服务器
大刘讲IT4 小时前
制造业数字化转型:流程改造先行还是系统固化数据?基于以MTO和MTS的投资回报分析
运维·经验分享·生活·产品经理·数据可视化
吃旺旺雪饼的小男孩4 小时前
Ubuntu 22.04 安装和运行 EDK2 超详细教程
linux·运维·ubuntu