简介

多分支的管道是在jenkins2.x中新增的功能 。

多分支管道允许你针对分布式的控制器的每个分支创建一个管道。 下图是对它的一个描述。使用jenkinsfile去创建多分支的管道,jenkinsfile可以存放在代码仓库中。 Jenkinsfile只是定义CI管道的一个脚本。

另外,多分支管道的设计初衷就是当Git仓库中的代码改变时,去自动触发构建。下图是对它的一个描述。

一. 准备工作

(1)在【全局工具配置】中Maven工具已经配置好。
(2)安装了【Pipeline Maven Integration Plugin】
(3)Java工具也需要安装好,由于我们构建是在jenkins master上执行,所以可以跳过此步(因为我们在安装Jenkins时,已经安装好Java)
(4)安装Gitlab插件,本实验使用gitlab做为代码管理

添加gitlab凭据到jenkins中

添加全局凭据

二. 从jenkins中配置在Gitlab服务器的webhooks

gitlab创建个人访问令牌(personal access token)

2.1 登录到gitlab,点击Settings

2.2 在右侧菜单栏中,点击Access Tokens

2.3 输入令牌名称、到期时间、令牌作用域等选项,点击Create personal access token按钮

2.4 查看生成的个人访问令牌,并保存到安全位置,页面刷新后将无法查看

jenkins添加gitlab

2.5 添加凭据

添加后,test测试报错

点击高级模式,选择API-levle为v3

升级git版本

[root@node1 ~]# wget https://github.com/git/git/archive/v2.2.1.tar.gz

[root@node1 ~]# tar -xf v2.2.1.tar.gz

[root@node1 ~]# cd git-2.2.1/

[root@node1 git-2.2.1]# yum install perl-ExtUtils-MakeMaker

[root@node1 git-2.2.1]# yum install zlib-devel

[root@node1 git-2.2.1]# make configure
GIT_VERSION = 2.2.1
GEN configure

[root@node1 git-2.2.1]# ./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv

[root@node1 git-2.2.1]# make

[root@node1 git-2.2.1]# make  install

[root@node1 git-2.2.1]# ln -s /usr/local/git/bin/git  /usr/bin/

[root@node1 git-2.2.1]# git --version

git version 2.2.1

问题依然出现,最后排查的过程中发现,复制的不是真正的token,这是坑爹的地方

2.6 jenkins查看成功

安装成功

三 创建一个多分支

3.1 编辑jenkinsfile

  1. node ('master') {
  2. checkout scm
  3. stage('Build') {
  4. withMaven(maven: 'M3') {
  5. if (isUnix()) {
  6. sh 'mvn -Dmaven.test.failure.ignore clean install package'
  7. }
  8. else {
  9. bat 'mvn -Dmaven.test.failure.ignore clean install package'
  10. }
  11. }
  12. }
  13. stage('Results') {
  14. junit '**/target/surefire-reports/TEST-*.xml'
  15. archive 'target/*.jar'
  16. }
  17. } installinstall

提交,开始创建多分枝流水线

3.2 创建多分枝项目

3.3 Trouble Shootting

出现错误:是因为 /usr/libexec/git-core/ 路径没在 PATH 环境变量中。

  1. Started by user darren ning
  2. [Sat Oct :: EDT ] Starting branch indexing...
  3. > git --version # timeout=
  4. using GIT_ASKPASS to set credentials
  5. > git ls-remote http://192.168.132.132/root/simple-maven-project-with-tests.git # timeout=10
  6. ERROR: [Sat Oct :: EDT ] Could not update folder level actions from source 9d2e73ea-7ee8--a8b2-0d7f20e75599
  7. hudson.plugins.git.GitException: Command "git ls-remote http://192.168.132.132/root/simple-maven-project-with-tests.git" returned status code :
  8. stdout:
  9. stderr: fatal: Unable to find remote helper for 'http'
  10.  
  11. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:)
  12. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:)
  13. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:)
  14. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:)
  15. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.getRemoteReferences(CliGitAPIImpl.java:)
  16. at jenkins.plugins.git.AbstractGitSCMSource.retrieveActions(AbstractGitSCMSource.java:)
  17. at jenkins.scm.api.SCMSource.fetchActions(SCMSource.java:)
  18. at jenkins.branch.MultiBranchProject.computeChildren(MultiBranchProject.java:)
  19. at com.cloudbees.hudson.plugins.folder.computed.ComputedFolder.updateChildren(ComputedFolder.java:)
  20. at com.cloudbees.hudson.plugins.folder.computed.FolderComputation.run(FolderComputation.java:)
  21. at jenkins.branch.MultiBranchProject$BranchIndexing.run(MultiBranchProject.java:)
  22. at hudson.model.ResourceController.execute(ResourceController.java:)
  23. at hudson.model.Executor.run(Executor.java:)
  24. [Sat Oct :: EDT ] Finished branch indexing. Indexing took ms
  25. FATAL: Failed to recompute children of simple-maven-project-with-tests
  26. hudson.plugins.git.GitException: Command "git ls-remote http://192.168.132.132/root/simple-maven-project-with-tests.git" returned status code :
  27. stdout:
  28. stderr: fatal: Unable to find remote helper for 'http'
  29.  
  30. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:)
  31. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:)
  32. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:)
  33. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:)
  34. at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.getRemoteReferences(CliGitAPIImpl.java:)
  35. at jenkins.plugins.git.AbstractGitSCMSource.retrieveActions(AbstractGitSCMSource.java:)
  36. at jenkins.scm.api.SCMSource.fetchActions(SCMSource.java:)
  37. at jenkins.branch.MultiBranchProject.computeChildren(MultiBranchProject.java:)
  38. at com.cloudbees.hudson.plugins.folder.computed.ComputedFolder.updateChildren(ComputedFolder.java:)
  39. at com.cloudbees.hudson.plugins.folder.computed.FolderComputation.run(FolderComputation.java:)
  40. at jenkins.branch.MultiBranchProject$BranchIndexing.run(MultiBranchProject.java:)
  41. at hudson.model.ResourceController.execute(ResourceController.java:)
  42. at hudson.model.Executor.run(Executor.java:)
  43. Finished: FAILURE

添加xport PATH=/usr/libexec/git-core:$PATH到/etc/profile里

在此执行

3.4 控制台输出

  1. Started by user darren ning
  2. [Sat Oct :: EDT ] Starting branch indexing...
  3. > git --version # timeout=
  4. using GIT_ASKPASS to set credentials
  5. > git ls-remote http://192.168.132.132/root/simple-maven-project-with-tests.git # timeout=10
  6. Creating git repository in /root/.jenkins/caches/git-308bd15be61318b6e1166e23433fdd72
  7. > git init /root/.jenkins/caches/git-308bd15be61318b6e1166e23433fdd72 # timeout=
  8. Setting origin to http://192.168.132.132/root/simple-maven-project-with-tests.git
  9. > git config remote.origin.url http://192.168.132.132/root/simple-maven-project-with-tests.git # timeout=10
  10. Fetching & pruning origin...
  11. Listing remote references...
  12. > git config --get remote.origin.url # timeout=
  13. > git --version # timeout=
  14. using GIT_ASKPASS to set credentials
  15. > git ls-remote -h http://192.168.132.132/root/simple-maven-project-with-tests.git # timeout=10
  16. Fetching upstream changes from origin
  17. > git config --get remote.origin.url # timeout=
  18. using GIT_ASKPASS to set credentials
  19. > git fetch --tags --progress origin +refs/heads/*:refs/remotes/origin/* --prune
  20. Checking branches...
  21. Checking branch master
  22. ‘Jenkinsfile’ found
  23. Met criteria
  24. Scheduled build for branch: master
  25. Checking branch feature
  26. ‘Jenkinsfile’ found
  27. Met criteria
  28. Scheduled build for branch: feature
  29. Processed 2 branches
  30. [Sat Oct 26 14:30:08 EDT 2019] Finished branch indexing. Indexing took 1 sec
  31. Finished: SUCCESS

已经完成

DEVOPS技术实践_09:Jenkins多分支管道的更多相关文章

  1. DEVOPS技术实践_07:Jenkins 管道工作

    一 简介 由于在公司构建很多工作,都是使用的maven工作构建的,这种构建方式很大缺点就是所有的工作都需要一步一步的配置,当项目较多,需求变动时,需要很大的精力去修改配置,很费劲 Pipeline即为 ...

  2. DEVOPS技术实践_18:Jenkins的Pinpeline对于参数的使用

    因为最近使用Pipeline声明式语法构建项目,但是最近项目的参数设置较多,特地的来学习一下关于参数的调用和测试,主要式从一个大神那里学习的,结尾回贴上大神的博客链接 1 构建一个pipeline项目 ...

  3. DEVOPS技术实践_17:Jenkins使用扩展邮件功能发送邮件

    一 环境准备 1.1 安装插件Email Extension 系统管理-管理插件-安装Email Extension插件 1.2 配置 配置jenkins邮箱的全局配置:系统管理-系统设置-完成邮箱配 ...

  4. DEVOPS技术实践_11:Jenkins集成Sonar

    前言 前面已经有介绍sonar的安装,简单应用,下面在简答的研究一下sonar和jenkins集成的简单使用,对于sonar的安装不做介绍 一 sonar的简单介绍 持续检查避免了低质量的代码,比如S ...

  5. DEVOPS技术实践_02:jenkins自动构建项目

    一.用户名密码错误 打开jenkins发现用户名密码错误,解决 1.1 找到config.xml文件 [root@jenkins-master ~]# ll -a drwxr-xr-x. root r ...

  6. DEVOPS技术实践_01:jenkins集成平台

    一.准备环境 准备三台机器 角色 IP地址 用户名 密码 jenkins-master   172.25.254.130    admin   meiyoumima gitlab 172.25.254 ...

  7. DEVOPS技术实践_13:使用Jenkins持续传送设计-CD基础

    1. 分支策略 持续集成中使用的分支策略包括以下三个: The master branch The integration branch The feature branch 而CD只在Integra ...

  8. DEVOPS技术实践_12:创建持续集成的管道

    持续集成不仅包含了Jenkins或者相关其它的CI工具,也包含了包含代码如何控制,采用的什么分支策略等.不同的组织可能采用不同的类型的策略来完成CI,策略类型和项目的类型的有很大的关系. 一 分支策略 ...

  9. DEVOPS技术实践_08:声明式管道语法

    简介 前面简单的做了管道的实验,看了一下的它的效果 声明式管道是Groovy语法中的一个更简单和结构化的语法.下面主要学习明式管道语法. 一 声明式管道的基本结构 以上节的代码为例 node { de ...

随机推荐

  1. @codeforces - 1205B@ Shortest Cycle

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 给定一个长度为 n 的正整数序列 a1, a2, ..., an ...

  2. NSDate 格式化含有毫秒

    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss.SSS"]; 版权声明:本文为博主原创文章,未经博主允许不得转载.

  3. celery 计划任务使用

    流程: 用户提交任务 --- > Celery --- > Broker 中间商(可以是数据库,redis) ---> 最后让celery 中的 worker 执行任务 1 单独使用 ...

  4. DECLARE

    -- 修正用プログラム DECLARE    CURSOR c_adv_fee_detail IS        SELECT adv_fee.fee_mgmt_num,                ...

  5. linux 一些简单操作

    vim   ----三种模式 1.命令模式           2.输出模式       3.底线命令模式 w(e) 移动光标到下一个单词 b 移动到光标上一个单词 数字0 移动到本行开头 $ 移动光 ...

  6. lualatex+Beamer生成ppt

    直接放模板代码 \documentclass{beamer} % There are many different themes available for Beamer. A comprehensi ...

  7. SVG和canvas画图,js求数组最大最小值

    windows命令行的内容怎么复制,右键选择标记,选中内容后再点击鼠标右键就复制了. 安装Node.js后再用npm install命令会出现如下warn:saveError ENOENT: no s ...

  8. [C++] 烦人的error LNK2019和error LNK2001

    常见原因: 没有正确的设置引用的lib,新手常犯这个错误,这是最容易解决的问题. extern "C"的问题.如果C++写的dll要给C程序用,那么就要注意extern " ...

  9. H3C 基本ACL

  10. Mysql怎样控制replace替换的次数?

    我想把“ABC是ABC”替换成“123是ABC”,也就是找出第一个ABC替换成123,MYSQL命令应该怎么写? UPDATE data SET body=REPLACE(body, 'ABC', ' ...