本文整理汇总了Python中jenkinsapi.job.Job.get_last_build_or_none方法的典型用法代码示例。如果您正苦于以下问题:Python Job.get_last_build_or_none方法的具体用法?Python Job.get_last_build_or_none怎么用?Python Job.get_last_build_or_none使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jenkinsapi.job.Job
的用法示例。
在下文中一共展示了Job.get_last_build_or_none方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getLastBuildInfo
# 需要导入模块: from jenkinsapi.job import Job [as 别名]
# 或者: from jenkinsapi.job.Job import get_last_build_or_none [as 别名]
def getLastBuildInfo(self,server):
try:
job_obj=Job(server.baseurl+"/job/"+self.data['builddf']['Name'],self.data['builddf']['Name'],server)
last_bd=job_obj.get_last_build_or_none()
self.logger.debug("The last build at %s is %s" % (server.baseurl, last_bd.name))
except Exception, details:
#sys.stderr.write('ERROR: %s \n' % details)
#sys.exit(1)
#x=inspect.stack()
if 'test_' in inspect.stack()[1][3] or 'test_' in inspect.stack()[2][3]:
raise
else:
#print Exception,details
self.logger.error('ERROR: %s \n' % details,exc_info=True)
sys.exit(1)