티스토리 뷰

반응형

centos gitlab 설치를 

Gitlab CI 설치
 - Gitlab Repository 추가를 했다. 

# curl https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh | sudo bash

- 그리고 gitlab Runner 최신버젼 설치 하려고 했을때 

# yum install gitlab-runner -y

[root@localhost ~]# yum install gitlab-runner -y
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.kakao.com
 * extras: mirror.kakao.com
 * updates: mirror.kakao.com
No package gitlab-runner available.
Error: Nothing to do

 

해결방법

 

1) Gitlab Repository 추가
curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-ci-multi-runner/script.rpm.sh | sudo bash

 

2)gitlab Runner 최신버젼 설치 재시도.
# yum install gitlab-runner -y

 

정상적으로 동작된다. 

반응형
댓글