| 
×
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册  一、VirtualBox安装两台机器:A(2C4G,docker:gitlab,CentOS7)
 B(2C2G,yum:gitlab-runner,CentOS7)
 二、gitlab-runner:
 配置为project中使用,gitlab-runner注册成功,显示“Runner is online, last contact was 24 minutes ago”。
 executor = “ssh”
 [runners.ssh]配置为B机器(gitlab-runner)相关信息。
 三、git库:
 根目录增加文件:.gitlab-ci.yml,内容如下:
 
 复制代码stages:
maven
job:
stage: maven
tags:
- getbook
only:
- master
script:
- echo “This is the first maven job 1”
 git push后,“项目”——CI/CD——pipelines为空,jobs为空,Editor一直转圈,显示“Checking pipeline status”。 
 【请问】如何排查此问题?????????? 
 |