博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pipeline常用插件用法
阅读量:5175 次
发布时间:2019-06-13

本文共 1769 字,大约阅读时间需要 5 分钟。

pipeline 常用插件语句

1、checkout SCM 可以用来下载git仓代码,还可以支持cherry pick 某个patch

checkout([$class: 'GitSCM', branches: [[name: '*/master']],     userRemoteConfigs: [[url: 'http://git-server/user/repository.git']]])
  • url Type: String
  • branch (optional) Type: String
  • changelog (optional) Type: boolean
  • credentialsId (optional) Type: String
  • poll (optional) Type: boolean

用法:

checkout([$class: 'GitSCM', branches: [[name: "${branch}"]], doGenerateSubmoduleConfigurations: 	false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: "${relative_dir}"]], 		submoduleCfg: [], userRemoteConfigs: [[url: "${repo_url}"]]])checkout([$class: 'GitSCM', branches: [[name: env.GERRIT_BRANCH]], 	doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', 		relativeTargetDir: "${relative_dir}"], [$class: 'BuildChooserSetting', buildChooser: [$class: 			'GerritTriggerBuildChooser']]], submoduleCfg: [], userRemoteConfigs: [[refspec: 				env.GERRIT_REFSPEC, url: "${repo_url}"]]])

2、pipeline启动一个job,build

build job: 'my_job', parameters: [string(name: 'name', value: liurizhou), string(name: 'age', value: 	12)],propagate: false,wait: false

用法:

3、发布报告,publishHTML

publishHTML (target: [    allowMissing: false,    alwaysLinkToLastBuild: false,    keepAll: true,    reportDir: 'info',    reportFiles: 'manifest.html, report.html',    reportName: "Summary Report"])

用法:

4、withDockerContainer ,pipeline中启动docker镜像运行

withDockerContainer(args: '-e "http_proxy=xxxxx" -e "https_proxy=yyyyyy" -v "/home/my/workspace:/home/my/workspace"', 	image: 'myimages:latest')	 {		sh "cd /home/my/workspace && ls -l"}

用法:

5、emailext, pipeline中实现邮件发送

emailext (	subject:"标题",	body:"""	正文	""",	to:"xxxx@126.com"  )

用法:

转载于:https://www.cnblogs.com/liurizhou/p/10321006.html

你可能感兴趣的文章
TWaver html5 + NodeJS + express + websocket.io + redis 快速搭建项目(二)
查看>>
python 初学02 替换文件内容
查看>>
选择语句 if else
查看>>
STL中的set使用方法详细!!!!
查看>>
sealed关键字的作用
查看>>
Android系统Surface机制的SurfaceFlinger服务简要介绍和学习计划
查看>>
HDU - 4472 Count
查看>>
搭建测试环境
查看>>
调用链监控 CAT 之 入门
查看>>
flexbox属性速览及常见布局实现
查看>>
zlib在Linux和windows中的使用
查看>>
rabbitMq实战使用
查看>>
JQuery Easyui/TopJUI表格基本的删除功能(删除当前行和多选删除)
查看>>
javascript 倒计时
查看>>
web前端工程师入门须知
查看>>
linux--->linux 各个文件夹及含义
查看>>
欢迎使用CSD横竖屏切换问题占位
查看>>
2016集训测试赛(二十)Problem B: 字典树
查看>>
中文保存在properties乱码的解决
查看>>
poj题目分类
查看>>