[Gitlab-ce+Jenkins组合测试]

Jenkins主要就是个管理平台,通过各种插件来完成工作,之前写了一篇Jenkins通过本地的代码进行测试,但是每次代码更新之后需要每台节点机重新拷贝才可以完成相应的测试,这样非常麻烦,也不便于代码管理,所以引入了通过本地gitlab-ce来提交代码,然后任务Build之后,自动从gitlab-ce拉取到本地的workspace并开始测试,下面记录一下Jenkins如何访问gitlab的设置

一、设置Gitlab API Token

登录Gitlab,然后选择账户偏好设置-->访问令牌,新建一个名称的Gitlab的API

[Gitlab-ce+Jenkins组合测试]_第1张图片

创建成功之后

[Gitlab-ce+Jenkins组合测试]_第2张图片

 

二、配置Jenkins

1. 安装插件Gitlab Plugin

打开 Dashboard-->Manage Jenkins-->Manage Plugins-->Available plugins-->Search [Gitlab Plugin]-->Download and install

[Gitlab-ce+Jenkins组合测试]_第3张图片

 

2. 添加Gitlab凭据

打开 Dashboard-->Manage Jenkins-->Manage Credentials-->选择Store下的System-->然后选择Global credentials(unrestricted)-->+ Add Credentials 

URL: IP/manage/credentials/store/system/domain/_/newCredentials

[Gitlab-ce+Jenkins组合测试]_第4张图片

创建Gitlab凭据

[Gitlab-ce+Jenkins组合测试]_第5张图片

 

3. 配置Gitlab连接

打开 Dashboard-->Manage Jenkins-->Configure System-->Gitlab下进行配置

[Gitlab-ce+Jenkins组合测试]_第6张图片 

配置完成后点击测试连接,确保连接成功即可

4. 配置具体项目的Gitlab

步骤1. 设置Gitlab Connection

选择刚刚第三步配置Gitlab连接当中设置的名称

[Gitlab-ce+Jenkins组合测试]_第7张图片

 

步骤2. 设置Source Code Management-->Git

按照图片中开始设置

[Gitlab-ce+Jenkins组合测试]_第8张图片

 

5. 构建项目

选择你要测试的项目,检查日志

[Gitlab-ce+Jenkins组合测试]_第9张图片

 

你可能感兴趣的:(jenkins,gitlab,运维)