📌  相关文章
📜  在 centos 上安装 gitlab runner - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:23:07.728000             🧑  作者: Mango

在 CentOS 上安装 GitLab Runner

如果你使用 GitLab 作为你的代码仓库,那么 GitLab Runner 可以帮助你轻松地自动化构建、测试和部署代码。在本文中,我会告诉你如何在 CentOS 系统上安装 GitLab Runner。

安装 GitLab Runner
  1. 在 CentOS 命令行中,输入以下命令以添加 GitLab 的 GPG key。

    curl -L https://packages.gitlab.com/gpg.key | sudo apt-key add -
    
  2. 添加 GitLab 包存储库。

    sudo curl -o /etc/yum.repos.d/gitlab-runner.repo https://packages.gitlab.com/install/repositories/gitlab/gitlab-runner/script.rpm.sh
    
  3. 更新系统的软件包列表。

    sudo yum update
    
  4. 安装 GitLab Runner。

    sudo yum install gitlab-runner
    
  5. 启动 GitLab Runner 服务。

    sudo systemctl enable gitlab-runner
    sudo systemctl start gitlab-runner
    
注册 Runner

在安装了 GitLab Runner 后,你需要将其注册到你的 GitLab 实例。你可以在 GitLab 的设置中获取 registraton token。

在 CentOS 系统上,你可以使用以下命令进行注册。

sudo gitlab-runner register

在提示中输入以下信息。

  • GitLab 的 URL。
  • registration token。
  • Runner 的描述。
  • 执行 Runner 的默认 shell。

之后,GitLab Runner 就已经成功注册到你的 GitLab 实例了。

结束语

现在你已经成功地在 CentOS 系统上安装了 GitLab Runner。你可以使用它轻松地自动化构建、测试和部署你的代码。不过,你需要注意 Runner 的资源占用情况,以避免对系统造成影响。