我有一个 python 脚本,我试图从中获取詹金斯工作的当前内部版本号。下面的脚本给出了最后的构建号以及构建是成功还是失败。如何获取当前的内部版本号?我的意思是当我运行这个脚本时,它将使用新的内部版本号构建,我怎样才能获得当前的内部版本号?
脚本.py
import jenkins
import urllib2
import urllib
import sys
j = jenkins.Jenkins('http://localhost:8080')
if not j.job_exists('sample1234'):
j.create_job('sample1234', jenkins.EMPTY_CONFIG_XML)
j.reconfig_job('sample1234', jenkins.RECONFIG_XML)
j.build_job('sample1234')
last_build_number = j.get_job_info('sample123')['lastCompletedBuild'] ['number']
print last_build_number
build_info=j.get_build_info('sample123',last_build_number)
if build_info['result']=='SUCCESS':
print "Build Success "
else:
print " Build Failed "