Gitlab
CI & CD
.gitlab-ci.yml
- Readme · Quick start · Ci · Help · GitLab
- Configuration of your jobs with .gitlab-ci.yml
- Gitlab CI yaml官方配置文件翻译
- 用 GitLab CI 进行持续集成 | Scarletsky
Runner
Install GitLab Runner using the official GitLab repositories | GitLab
1
2
3
4curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | sudo bash
apt-cache madison gitlab-runner
sudo apt-get install gitlab-runner=10.8.0-
1
2
3
4
5
6
7
8
9sudo gitlab-runner register \
--non-interactive \
--url "http://gitlab.lyloou.com/" \
--registration-token "xxxxxxxxxxxxx" \
--executor "shell" \
--description "shell-runner" \
--tag-list "shell" \
--run-untagged="true" \
--locked="false"
-【GITLAB】 服务配置可持续集成部署的项目案例 - 安装篇 - 个人文章 - SegmentFault 思否
1 | sudo gitlab-runner list |
!!#ff0000
Runner的大版本号要和gitlab的在版本号保持一致。
如:Runner 10.8.0 ~ gitlab 10.2.4