yum 安装gitlab-ci
时间: 2023-09-05 21:12:18 浏览: 183
安装gitlab1
可以按照以下步骤在 CentOS 系统中使用 yum 安装 GitLab CI:
1. 打开终端,以 root 用户身份执行以下命令,下载 GitLab CI 的 RPM 包:
```
wget https://packages.gitlab.com/gitlab-ci-multi-runner/yum/el/7/gitlab-ci-multi-runner-9.3.0-1.x86_64.rpm
```
2. 执行以下命令,安装 GitLab CI:
```
yum install gitlab-ci-multi-runner-9.3.0-1.x86_64.rpm
```
3. 安装完成后,执行以下命令启动 GitLab CI:
```
gitlab-ci-multi-runner start
```
4. 如果需要开机启动 GitLab CI,可以执行以下命令:
```
systemctl enable gitlab-ci-multi-runner.service
```
注意:以上命令中的版本号可能已经过时,可以在 GitLab CI 的官方网站上查看最新版本并替换对应的版本号。
阅读全文