jenkins构建python代码,在python中使用jenkinsapi触发参数化构建

I am using the following code to create a job in jenkinsapi

from jenkinsapi.jenkins import *

from jenkinsapi.job import *

import os.path

import urllib2

jenkin = Jenkins('http://hudsonserver','hudson','hudson')

file0=open("data.log")

file1=open("full.log")

myJob = Job("http://hudsonserver/job/LTT_JOB/","LTT_JOB", jenkin)

parameters = {"data.log":file0,"full.log":file1,"REQUESTER_EMAIL_ID":"test@test.com"}

print myJob.get_last_buildnumber()

myJob.invoke('check',False,False,3,15,parameters)

In the invoke() call, I am using the token 'check'. It looks like the call is failing due to way parameters are represented, Can anyone tell if the following representation for parameters is correct?

parameters = {"data.log":file0,"full.log":file1,"REQUESTER_EMAIL_ID":"test@test.com"}

I would be really helpful if anyone can point to examples written with jenkinsapi

解决方案

No, this is definitly incorrect. Paramters dict would be converted to GET parameters. And file objects couldn't be converted to strings. You can pass path to files as parameters and write or read them inside your CI job.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值