触发流水线执行可以分为:
定义一个时间,时间到了就触发pipeline。
在Jenkins pipeline中使用trigger
指令来定义时间触发
Jenkins trigger cron语法采用UNIX cron语法。一条cron包含五个字段,使用空格分隔。
格式:MINUTE HOUR DOM MONTH DOW
使用特殊字符,指定多个值
*
:匹配所有值M-N
:匹配M-N之间的值M-N|X
or *|x
:指定M到N以X为步长的值A,B,C……Z
:多个值为了解决在同一时刻执行定时任务可能出现的负载不均衡问题。在Jenkins trigger cron语法中使用
H
字符来解决这个问题。H
代表hashH 0 * * *
代表在0点0分至0点59分任意一个时间点执行。
几个例子:
H/5 * * * *
:每隔5分钟构建一次H H/2 * * *
:每两小时构建一次0 12 * * *
:每天12点定时构建一次H(0-29)/10 * * * *
:前半小时的每隔10分钟45 9-16/2 * * 1-5
:周一到周五的9点45到16点45的每隔两个小时构建一次pipeline {
agent any
triggers {
cron ('0 0 * * *')
}
stages {
stage ('Nightly build') {
steps {
echo '明天凌晨执行'
}
}
}
}
定期到代码仓库询问代码是否有变化,如果代码仓库有变化,就执行
pipeline {
agent any
triggers {
pollSCM ('H/1 * * * *')
}
stages {
stage ('build') {
steps {
echo '轮询执行'
}
}
}
}
当B任务的执行依赖A任务的执行结果,A就是B的上游任务。
triggers {
upstream(upstreamProjects: 'job1,job2',threshold:hudson.model.Result.SUCCESS)
}
ABORTED
,FAILURE
,SUCCESS
,UNSTSBLE
,NOT_BUILT
其中它们分别表示:
image-20190713215959418
创建项目
$ git clone http://123.56.13.233:9000/zhongxin/hello-world-pipeline.git
正克隆到 'hello-world-pipeline'...
warning: 您似乎克隆了一个空仓库。
$ cd hello-world-pipeline
$ touch 1.py
$ git add 1.py
$ git commit -m "add 1.py"
[master(根提交) e815882] add 1.py
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 1.py
$ git push -u origin master
remote: You are not allowed to push code to this project.
fatal: unable to access 'http://123.56.13.233:9000/zhongxin/hello-world-pipeline.git/': The requested URL returned error: 403
$ git push -u origin master
分支 'master' 设置为跟踪来自 'origin' 的远程分支 'master'。
Everything up-to-date
PS:如果遇到403问题请将.git/config
中的url修改为:https://用户名:密码@123.56.13.233:9000/zhongxin/hello-world-pipeline.git/
代码上库
查看
再同之前GitHub一样,添加一个凭证
添加凭证
触发器
为了保障安全,需要生成一个Secret toekn
c342352fc4cf45e01c0f783a7fdf38b7
就是一个Secret toekn
生成Secret toekn
配置Gitlab
额,到这里遇到一个比较尴尬的问题。我的gitlab服务器在公网,Jenkins服务器在局域网内
如果,如果成功了的话就可以在下方Project services
处看到新增的Webhooks
pipeline {
agent any
triggers {
gitlab(triggerOnPush: true,
triggerOnMergeRequest: true,
branchFilterType: 'All',
secretToken: 'c342352fc4cf45e01c0f783a7fdf38b7')
}
stages {
stage('build') {
steps {
echo "Hello wolrd"
}
}
}
}
创建API token
添加凭证
设置
pipeline {
agent any
triggers {
gitlab(triggerOnPush: true,
triggerOnMergeRequest: true,
branchFilterType: 'All',
secretToken: 'c342352fc4cf45e01c0f783a7fdf38b7')
}
stages {
stage('build') {
steps {
echo "Hello wolrd"
}
}
}
post {
failure {
updateGitlabCommitStatus name:'build',state:'failed'
}
success {
updateGitlabCommitStatus name:'build',state:'success'
}
}
options {
gitLabConnecton('gitlab')
}
}
使用Generic Webhook Trigger
插件,具体内容不展开