Jenkins-Pipeline触发机制
设置好了功能强大的流水线后,接下来我们要做的就是去执行流水线,如果都靠手动去触发流水线,显然不符合带着自动化基因新一代工程师的风格,必须自动触发。
那么Jenkins的Pipeline支持哪些触发机制呢。一起来看一下。
定时触发:cron
cron规则与crontab的规则是一样的
1 | pipeline{ |
轮询代码仓库
周期性检查代码,看代码是否有更新。这种方式需要使用
1 | pipeline{ |
由上游任务触发
1 | pipeline{ |
hudson.model.Result包括以下状态:
ABORTED:任务被手动中止
FAILURE:构建失败
SUCCESS:构建成功
UNSTABLE:存在一些错误,但构建没失败
NOT_BUILT:多阶段构建时,前面阶段问题导致后面阶段无法执行
GitLab通知触发
详情请在插件Gitlab plugin的github页面上查看
1 | pipeline{ |
将构建状态信息推送到GitLab
- 在Jenkins的系统设置中,Gitlab选项下填入Gitlab信息。例Connection name设为gitlab
- 按提示设置Gitlab的凭证,以对话框中输入Gitlab平台获取的API token
- 在pipeline的post部分,将构建结果更新到Gitlab相应的commit记录下,同时还需要在options参数中加入
gitLabConnection
配置1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28pipeline{
agent any
triggers{
gitlab(
triggerOnPush: true,
triggerOnMergeRequest: true,
branchFilterType: 'All',
secretToken: "abcdxxxfa")
}
stages{
stage('构建'){
steps{
echo "gitlab 触发"
}
}
}
post{
failure{
updateGitlabCommitStatus name: 'build', state: 'failed'
}
success{
updateGitlabCommitStatus name: 'build', state: 'success'
}
}
options{
gitLabConnection('gitlab')
}
}
Generic Webhook Trigger插件触发
Generic Webhook Trigger是一个通用的通过Webhook的方式触发pipeline的插件
1 | pipeline{ |
然后通过POST请求触发
1 | curl -X POST -H "Content-Type: application/json" -d '{"ref": "refs/heads/master" }' -vs http://jenkins.local:8080/jenkins/generic-webhook-trigger/invoke?token=secret |
触发条件依靠:token
、regexpFilterText
、regexpFilterExpression
三个参数。首先token必须匹配,其次regexpFilterText
指定的key对应的值满足regexpFilterExpression
表达式。
参考资料
《Jenkins 2.X实践指南》
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Michael Blog!
评论