GitLab CI/CD (opens new window)介绍。
gitlab-ruuner使用前提是需要安装git (opens new window)的。
# windows版
# 1. 下载gitlab-runner, windows 64位官网下载 (opens new window)。
# 2. 到gitlab-runner.exe的目录下,以管理员身份运行cmd,执行 gitlab-runner.exe register,然后填写相关信息。
PS E:\zero_dev\cicd> ./gitlab-runner.exe register
Runtime platform arch=amd64 os=windows pid=32796 revision=7f7a4bb0 version=13.11.0
Enter the GitLab instance URL (for example, https://gitlab.com/):
https://xxx.xxx.com/ # 这是gitlab的地址,即上一步中的url
Enter the registration token:
Z16Ng6BGpWtf98TU4M7d # 这是gitlab某个工程中的token,即上一步中的token
Enter a description for the runner:
[zhaoshuai9lc10]: nocode-205-example # 这个是描述,尽量描述清楚些,否则后面会不清楚这个runner是搞啥的
Enter tags for the runner (comma-separated):
nocode-205 # 这个是标签,可以指定运行哪个或哪些标签的runner
Registering runner... succeeded runner=Z16Ng6BG
Enter an executor: virtualbox, docker-ssh+machine, custom, docker-windows, parallels, shell, ssh, docker, docker-ssh, docker+machine, kubernetes:
shell # 选择执行器,这里我们选择shell
Runner registered successfully. Feel free to start it, but if it's running already the config should be automatically reloaded!
PS E:\zero_dev\cicd>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 3. gitlab-runner相关命令
gitlab-runner.exe install # 安装服务
gitlab-runner.exe start # 启动服务
gitlab-runner.exe restart #重启服务 也可以在windows服务中手动重启
1
2
3
2
3
config.toml示例(默认生成的runners shell='pwsh') 需要改为 shell = "powershell"
以下是修改后的runners
[[runners]]
name = "vdocs-runner"
url = "http://124.71.191.25/"
token = "pkCWJ58JyNC3Yie2CnNP"
executor = "shell"
shell = "powershell"
[runners.custom_build_dir]
[runners.cache]
[runners.cache.s3]
[runners.cache.gcs]
[runners.cache.azure]
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11