gitlab CI/CD的gitlab-runner构建项目(go web项目实战体验)

runner安装

runner时gitlab CI/CD得以实现的基础。

gitlab-runner安装

centos安装

# Replace ${arch} with any of the supported architectures, e.g. amd64, arm, arm64
# A full list of architectures can be found here https://gitlab-runner-downloads.s3.amazonaws.com/latest/index.html
curl -LJO "https://gitlab-runner-downloads.s3.amazonaws.com/latest/rpm/gitlab-runner_${arch}.rpm"

rpm -i gitlab-runner_<arch>.rpm

# 或者命令行

猜你喜欢

转载自blog.csdn.net/xwh3165037789/article/details/136562722