Jenkins, 远程触发构建

1. 概述

远程触发, 是指不直接在jenkins上点击构建, 而是通过脚本或其他方式触发jenkins构建任务, 打通jenkins与外部程序的通信

2. 配置

远程触发选项: Trigger builds remotely

Enable this option if you would like to trigger new builds by accessing a special predefined URL (convenient for scripts).

One typical example for this feature would be to trigger new build from the source control system’s hook script, when somebody has just committed a change into the repository, or from a script that parses your source control email notifications.

image.png

3. 演示

3.1. 说明

远程触发是通过API方式拉起

  • jenkins项目url: JENKINS_URL/job/P101/build?token=TOKEN_NAME (TOKEN_NAME自行配置)
  • 可选参数: &cause=Cause+Text, 记录构建原因

3.2. shell脚本

-u admin:admin 指定jenkins用户/密码, 如果是匿名用户, 可能出现鉴权失败

[root@localhost ~]# cat trigger.sh 
#!/bin/bash


echo "Work Done !!!"

echo "Trigger jenkins job ..."
curl -u admin:admin "http://192.168.197.128:8080/job/P101/build?token=abcdefg1234567890&cause=Cause+RemoteSignal"

exit 0

3.3. 执行

sh trigger.sh
image.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值