1. Job is stuck
Shell Runner跑CI任务,报错:
1 | Job is stuck. Check runners. allowed to fail |
解决办法:
经查是因为gitlab-runner版本比较高(15.5.0),新版本的runner,要求.gitlab-ci.yml
必须要配置tags,指定runner。
2. setting GIT_CLONE_PATH is not allowed
Shell Runner跑CI任务,报错:
1 | ERROR: Job failed: setting GIT_CLONE_PATH is not allowed, enable `custom_build_dir` feature |
解决办法:启用custom_build_dir
1 | vim /etc/gitlab-runner/config.toml |
添加custom_build_dir配置
1 | [[runners]] |
重启gitlab-runner
1 | gitlab-runner restart |
3. fatal: git fetch-pack
Shell Runner跑CI任务,报错:
1 | fatal: git fetch-pack: expected shallow list |
解决办法:
git版本问题,升级git
1 | rpm -ivh http://opensource.wandisco.com/centos/7/git/x86_64/wandisco-git-release-7-1.noarch.rpm |
4. 不能锁定配置文件
Shell Runner跑CI任务,报错:
error: 不能锁定配置文件 /home/gitlab-runner/builds/builds/xxx/main.tmp/git-template/config: 没有那个文件或目录
解决办法:
没有检索到找到解决办法,尝试降级到14.5.0
,问题解决。降级方法参考【Linux环境安装runner】一节。
5. No such file or directory
Shell Runner跑CI任务,报错:
1 | Skipping Git checkout |
解决办法:.gitlab-ci.yml
文件中添加GIT_CHECKOUT变量
1 | variables: |
6. 下载镜像报错
Docker Machine Runner跑CI任务,一直正常。
Docker Machine Runner没有任何变动,突然有一天,执行docker build的时候,下载基础镜像报错:
ERROR: failed to do request: Head https://192.168.56.101:5000/v2/library/python/manifests/3.8: http: server gave HTTP response to HTTPS client
重启gitlab-runner问题依旧,重启机器问题依旧。
解决办法:runner配置里,指定docker image的版本为docker:19.03
,而不要使用docker
,否则一直会拉取最新版的docker,而最新版的docker不支持发送http请求镜像仓库。