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

1 构建一个pipeline项目

2 编写jenkinsfile文件

  1. import hudson.model.*;
  2. pipeline{
  3.  
  4. agent any
  5. stages{
  6. stage("Hello Pipeline") {
  7. steps {
  8. script {
  9. println "Hello Pipeline!"
  10. println env.JOB_NAME
  11. println env.BUILD_NUMBER
  12. }
  13. }
  14. }
  15. }
  16.  
  17. }

3 设置pipeline

4 结果

  1. Started by user darren ning
  2. Obtained pipeline.jenkinsfile from git http://192.168.132.132/root/pipeline-parameter-test.git
  3. Running in Durability level: MAX_SURVIVABILITY
  4. [Pipeline] Start of Pipeline
  5. [Pipeline] node
  6. Running on Jenkins in /root/.jenkins/workspace/pipeline_parameter_project
  7. [Pipeline] {
  8. [Pipeline] stage
  9. [Pipeline] { (Declarative: Checkout SCM)
  10. [Pipeline] checkout
  11. No credentials specified
  12. Cloning the remote Git repository
  13. Cloning repository http://192.168.132.132/root/pipeline-parameter-test.git
  14. > git init /root/.jenkins/workspace/pipeline_parameter_project # timeout=
  15. Fetching upstream changes from http://192.168.132.132/root/pipeline-parameter-test.git
  16. > git --version # timeout=
  17. > git fetch --tags --progress http://192.168.132.132/root/pipeline-parameter-test.git +refs/heads/*:refs/remotes/origin/*
  18. > git config remote.origin.url http://192.168.132.132/root/pipeline-parameter-test.git # timeout=10
  19. > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
  20. > git config remote.origin.url http://192.168.132.132/root/pipeline-parameter-test.git # timeout=10
  21. Fetching upstream changes from http://192.168.132.132/root/pipeline-parameter-test.git
  22. > git fetch --tags --progress http://192.168.132.132/root/pipeline-parameter-test.git +refs/heads/*:refs/remotes/origin/*
  23. > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
  24. > git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=10
  25. Checking out Revision 256f52910dbbc98008973b177ef533f21fd10a1f (refs/remotes/origin/master)
  26. > git config core.sparsecheckout # timeout=10
  27. > git checkout -f 256f52910dbbc98008973b177ef533f21fd10a1f
  28. Commit message: "Add new file"
  29. First time build. Skipping changelog.
  30. [Pipeline] }
  31. [Pipeline] // stage
  32. [Pipeline] withEnv
  33. [Pipeline] {
  34. [Pipeline] stage
  35. [Pipeline] { (Hello Pipeline)
  36. [Pipeline] script
  37. [Pipeline] {
  38. [Pipeline] echo
  39. Hello Pipeline!
  40. [Pipeline] echo
  41. pipeline_parameter_project
  42. [Pipeline] echo
  43. 1
  44. [Pipeline] }
  45. [Pipeline] // script
  46. [Pipeline] }
  47. [Pipeline] // stage
  48. [Pipeline] }
  49. [Pipeline] // withEnv
  50. [Pipeline] }
  51. [Pipeline] // node
  52. [Pipeline] End of Pipeline
  53. Finished: SUCCESS

上面就是简单的参数调用,但是当项目的西安舒比较多的时候,需要一个很长篇幅的构建页面,

假如有十来个可变的参数,其中有几个是可以提取出来,没必要暴露出来,那么我们就可以把其他参数放入到一个json文件。这个json文件,可以存放在linux服务器上。

原则上,每一个有权限去构建这个job的人,需要去linux服务器上创建自己的名称的文件夹,这个文件夹下然后放一个json文件。

准备一个json文件,在这个文件定义一些需要的参数,为了方便,就直接从博主那里粘贴了

5 使用json调用参数

vi /tmp/test.json

  1. {
  2. "NAME":"Lucy",
  3. "AGE":"",
  4. "PHONE_NUMBER":"",
  5. "ADDRESS":"Haidian Beijing",
  6. "EMAIL":"lucy@demo.com",
  7. "GENDER":"male",
  8. "IS_MARRY":"false"
  9. }

jenkinsfile文件

  1. import hudson.model.*;
  2. pipeline{
  3. agent any
  4. environment {
  5. INPUT_JSON = "/tmp/test.json" #原本的文档使用参数化构建,我这里直接使用pipeline的环境变量,效果一样
  6. }
  7. stages{
  8. stage("Hello Pipeline") {
  9. steps {
  10. script {
  11. println "Hello Pipeline!"
  12. println env.JOB_NAME
  13. println env.BUILD_NUMBER
  14. }
  15. }
  16. }
  17. stage("Init paramters in json") {
  18. steps {
  19. script {
  20.  
  21. println "read josn input file"
  22. json_file = INPUT_JSON? INPUT_JSON.trim() : ""
  23. prop = readJSON file : json_file
  24. name = prop.NAME? prop.NAME.trim() : ""
  25. println "Name:" + name
  26. }
  27. }
  28. }
  29. }
  30. }

6 安装插件

需要安装这个插件

安装完成后,构建

构建结果

  1. Started by user darren ning
  2. Obtained pipeline.jenkinsfile from git http://192.168.132.132/root/pipeline-parameter-test.git
  3. Running in Durability level: MAX_SURVIVABILITY
  4. [Pipeline] Start of Pipeline
  5. [Pipeline] node
  6. Running on Jenkins in /root/.jenkins/workspace/pipeline_parameter_project
  7. [Pipeline] {
  8. [Pipeline] stage
  9. [Pipeline] { (Declarative: Checkout SCM)
  10. [Pipeline] checkout
  11. No credentials specified
  12. > git rev-parse --is-inside-work-tree # timeout=
  13. Fetching changes from the remote Git repository
  14. > git config remote.origin.url http://192.168.132.132/root/pipeline-parameter-test.git # timeout=10
  15. Fetching upstream changes from http://192.168.132.132/root/pipeline-parameter-test.git
  16. > git --version # timeout=
  17. > git fetch --tags --progress http://192.168.132.132/root/pipeline-parameter-test.git +refs/heads/*:refs/remotes/origin/*
  18. > git rev-parse refs/remotes/origin/master^{commit} # timeout=
  19. > git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=
  20. Checking out Revision 139f409fd00ad11c293ce9726c7a638f73212062 (refs/remotes/origin/master)
  21. > git config core.sparsecheckout # timeout=
  22. > git checkout -f 139f409fd00ad11c293ce9726c7a638f73212062
  23. Commit message: "Update pipeline.jenkinsfile"
  24. > git rev-list --no-walk 9fc1715852a27f40d5fa3277d6f58ac150c972da # timeout=
  25. [Pipeline] }
  26. [Pipeline] // stage
  27. [Pipeline] withEnv
  28. [Pipeline] {
  29. [Pipeline] withEnv
  30. [Pipeline] {
  31. [Pipeline] stage
  32. [Pipeline] { (Hello Pipeline)
  33. [Pipeline] script
  34. [Pipeline] {
  35. [Pipeline] echo
  36. Hello Pipeline!
  37. [Pipeline] echo
  38. pipeline_parameter_project
  39. [Pipeline] echo
  40.  
  41. [Pipeline] }
  42. [Pipeline] // script
  43. [Pipeline] }
  44. [Pipeline] // stage
  45. [Pipeline] stage
  46. [Pipeline] { (Init paramters in json)
  47. [Pipeline] script
  48. [Pipeline] {
  49. [Pipeline] echo
  50. read josn input file
  51. [Pipeline] readJSON
  52. [Pipeline] echo
  53. Name:Lucy
  54. [Pipeline] }
  55. [Pipeline] // script
  56. [Pipeline] }
  57. [Pipeline] // stage
  58. [Pipeline] }
  59. [Pipeline] // withEnv
  60. [Pipeline] }
  61. [Pipeline] // withEnv
  62. [Pipeline] }
  63. [Pipeline] // node
  64. [Pipeline] End of Pipeline
  65. Finished: SUCCESS

7 用完全的Jenkinsfile调用所有参数

  1. import hudson.model.*;
  2. pipeline{
  3. agent any
  4. environment {
  5. INPUT_JSON = "/tmp/test.json"
  6. }
  7. stages{
  8. stage("Hello Pipeline") {
  9. steps {
  10. script {
  11. println "Hello Pipeline!"
  12. println env.JOB_NAME
  13. println env.BUILD_NUMBER
  14. }
  15. }
  16. }
  17.  
  18. stage("Init paramters in json") {
  19. steps {
  20. script {
  21.  
  22. println "read josn input file"
  23. json_file = INPUT_JSON? INPUT_JSON.trim() : ""
  24. prop = readJSON file : json_file
  25. name = prop.NAME? prop.NAME.trim() : ""
  26. println "Name:" + name
  27. age = prop.AGE? prop.AGE.trim() : ""
  28. println "Age:" + age
  29. phone = prop.PHONE_NUMBER? prop.PHONE_NUMBER.trim() : ""
  30. println "Phone:" + phone
  31. address = prop.ADDRESS? prop.ADDRESS.trim() : ""
  32. println "Address:" + address
  33. email = prop.EMAIL? prop.EMAIL.trim() : ""
  34. println "Email:" + email
  35. gender = prop.GENDER? prop.GENDER.trim() : ""
  36. println "Gender:" + gender
  37. is_marry = prop.IS_MARRY? prop.IS_MARRY.trim() : false
  38. println "is_marry:" + is_marry
  39. }
  40. }
  41. }
  42. }
  43.  
  44. }

8 最终构建结果

  1. Started by user darren ning
  2. Obtained pipeline.jenkinsfile from git http://192.168.132.132/root/pipeline-parameter-test.git
  3. Running in Durability level: MAX_SURVIVABILITY
  4. [Pipeline] Start of Pipeline
  5. [Pipeline] node
  6. Running on Jenkins in /root/.jenkins/workspace/pipeline_parameter_project
  7. [Pipeline] {
  8. [Pipeline] stage
  9. [Pipeline] { (Declarative: Checkout SCM)
  10. [Pipeline] checkout
  11. No credentials specified
  12. > git rev-parse --is-inside-work-tree # timeout=
  13. Fetching changes from the remote Git repository
  14. > git config remote.origin.url http://192.168.132.132/root/pipeline-parameter-test.git # timeout=10
  15. Fetching upstream changes from http://192.168.132.132/root/pipeline-parameter-test.git
  16. > git --version # timeout=
  17. > git fetch --tags --progress http://192.168.132.132/root/pipeline-parameter-test.git +refs/heads/*:refs/remotes/origin/*
  18. > git rev-parse refs/remotes/origin/master^{commit} # timeout=
  19. > git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=
  20. Checking out Revision 1f532ef638de79563acdabb39378602140ebd2e1 (refs/remotes/origin/master)
  21. > git config core.sparsecheckout # timeout=
  22. > git checkout -f 1f532ef638de79563acdabb39378602140ebd2e1
  23. Commit message: "Update pipeline.jenkinsfile"
  24. > git rev-list --no-walk 139f409fd00ad11c293ce9726c7a638f73212062 # timeout=
  25. [Pipeline] }
  26. [Pipeline] // stage
  27. [Pipeline] withEnv
  28. [Pipeline] {
  29. [Pipeline] withEnv
  30. [Pipeline] {
  31. [Pipeline] stage
  32. [Pipeline] { (Hello Pipeline)
  33. [Pipeline] script
  34. [Pipeline] {
  35. [Pipeline] echo
  36. Hello Pipeline!
  37. [Pipeline] echo
  38. pipeline_parameter_project
  39. [Pipeline] echo
  40.  
  41. [Pipeline] }
  42. [Pipeline] // script
  43. [Pipeline] }
  44. [Pipeline] // stage
  45. [Pipeline] stage
  46. [Pipeline] { (Init paramters in json)
  47. [Pipeline] script
  48. [Pipeline] {
  49. [Pipeline] echo
  50. read josn input file
  51. [Pipeline] readJSON
  52. [Pipeline] echo
  53. Name:Lucy
  54. [Pipeline] echo
  55. Age:
  56. [Pipeline] echo
  57. Phone:
  58. [Pipeline] echo
  59. Address:Haidian Beijing
  60. [Pipeline] echo
  61. Email:lucy@demo.com
  62. [Pipeline] echo
  63. Gender:male
  64. [Pipeline] echo
  65. is_marry:false
  66. [Pipeline] }
  67. [Pipeline] // script
  68. [Pipeline] }
  69. [Pipeline] // stage
  70. [Pipeline] }
  71. [Pipeline] // withEnv
  72. [Pipeline] }
  73. [Pipeline] // withEnv
  74. [Pipeline] }
  75. [Pipeline] // node
  76. [Pipeline] End of Pipeline
  77. Finished: SUCCESS

实验基本完成


参考文档:https://blog.csdn.net/u011541946/article/details/88937201

感谢博主的分享,让我在jenkins上又进了一步

DEVOPS技术实践_18:Jenkins的Pinpeline对于参数的使用的更多相关文章

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

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

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

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

  3. DEVOPS技术实践_09:Jenkins多分支管道

    简介 多分支的管道是在jenkins2.x中新增的功能 . 多分支管道允许你针对分布式的控制器的每个分支创建一个管道. 下图是对它的一个描述.使用jenkinsfile去创建多分支的管道,jenkin ...

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

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

  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技术实践_19:Pipeline的多参数json调用

    在上一篇学习了把参数写进Json文件,然后通过去Json文件,调用参数的方法 1. 三元运算符介绍 调用的方法是通过一个三元运算符实现的 gender = prop.GENDER? prop.GEND ...

  8. DEVOPS技术实践_04:Jenkins参数化构建

    一.参数化构建 1.1 各个参数的信息 凭据参数存储一个用户的账号密码信息,等等,运用最多的是选项参数 1.2 使用选项参数 构建已经变成参数化构建 1.3 获取这个值,修改Jenkinsfile文件 ...

  9. DEVOPS技术实践_03:Jenkins自动构建

    一.提交代码自动构建 当开发人员在gitlab提交代码后,会自动触发jenkin构建 点击项目---->点击diy_maven-TEST----->点击配置--->构建触发器---- ...

随机推荐

  1. PDM->OOM->C#实体类生成时,对Blob类型字段的处理

    pdm中的Blob字段生成OOM时,自动变成了string类型,再生成实体类时也是string 如何将oom中对应的blob字段设置为Byte[]类型,目前没找到方法, 只能通过脚本,将生成后的OOM ...

  2. laravel 实现微博第三方登陆

    https://blog.csdn.net/a12541254/article/details/79415550 1.安装 composer require socialiteproviders/we ...

  3. 2018-8-10-git-使用-VisualStudio-比较分支更改

    title author date CreateTime categories git 使用 VisualStudio 比较分支更改 lindexi 2018-08-10 19:16:52 +0800 ...

  4. 【原生JS】自动渐变轮播

    渐变主要是通过CSS3的动画实现. 只需给css中添加transtion动画时间加上JS设置指定图片透明度显示与消失即可实现渐变过程. 效果图: HTML: <!DOCTYPE html> ...

  5. 【转载】.NET中使用Redis

    Redis是一个用的比较广泛的Key/Value的内存数据库,新浪微博.Github.StackOverflow 等大型应用中都用其作为缓存,Redis的官网为http://redis.io/. 最近 ...

  6. squid+iptables实现网关防火墙

    需求说明:此服务器用作网关.MAIL(开启web.smtp.pop3).FTP.DHCP服务器,内部一台机器(192.168.0.254)对外提供dns服务,为了不让无意者轻易看出此服务器开启了ssh ...

  7. Python--day41--线程队列

    1,普通队列:queue.Queue(),先进先出 import queue q = queue.Queue() #队列 先进先出 q.put(1) q.put(2) q.put(3) q.put(4 ...

  8. Python--day41--守护线程

    1,守护线程:守护线程会在主线程结束之后等待其他子线程的结束才结束 拓展--守护进程:守护进程随着主进程代码的执行结束而结束 代码示例:守护线程.py import time from threadi ...

  9. java 一个类加载器的高级问题分析

    编写一个能打印出自己的类加载器名称和当前类加载器的父子结构关系链的MyServlet,正常发布后,看到打印结果为WebAppClassloader. 把MyServlet.class文件打jar包,放 ...

  10. Server,Servlet,ServletConfig,ServletContext,Session,Request,Response

    Server流程 解析URL->找到应用->找到Servlet->实例化Servlet->调用init->调用service->返回响应->调用destroy ...