mirror of https://github.com/axmolengine/axmol.git
60 lines
1.6 KiB
Python
60 lines
1.6 KiB
Python
import jenkinsapi
|
|
from jenkinsapi.jenkins import Jenkins
|
|
import sys
|
|
import time
|
|
import os
|
|
|
|
#check & kill dead buid
|
|
def build_time(_job,_threshold):
|
|
#get jenkins-job-watchdog-threshold
|
|
#Get last build running
|
|
build = _job.get_last_build()
|
|
running = build.is_running()
|
|
print 'build_job:',_job,'running:',running
|
|
if not running:
|
|
return False
|
|
|
|
#Get numerical ID of the last build.
|
|
buildnu = _job.get_last_buildnumber()
|
|
print "buildnumber:#",buildnu
|
|
#get nowtime
|
|
nowtime = int(time.time())
|
|
print 'nowtime:', time.ctime(nowtime)
|
|
#get build start time
|
|
timestamp = build._poll()['timestamp']
|
|
buildtime = int(timestamp)/1000
|
|
print 'buildtime:', time.ctime(buildtime)
|
|
subtime = (nowtime - buildtime)/60
|
|
print 'subtime:', subtime, _threshold
|
|
if subtime > _threshold:
|
|
#print 'subtime',subtime
|
|
#kill dead buid
|
|
build.stop()
|
|
|
|
def main():
|
|
username = os.environ['JENKINS_ADMIN']
|
|
password = os.environ['JENKINS_ADMIN_PW']
|
|
J = Jenkins('http://115.28.134.83:8000',username,password)
|
|
#get all jenkins jobs
|
|
for key,job in J.iteritems():
|
|
threshold = 0
|
|
if(os.environ.has_key(key+'-threshold')):
|
|
threshold = int(os.environ[key+'-threshold'])
|
|
else:
|
|
threshold = int(os.environ['jenkins-job-watchdog-threshold'])
|
|
build_time(job,threshold)
|
|
return(0)
|
|
|
|
|
|
# -------------- main --------------
|
|
if __name__ == '__main__':
|
|
sys_ret = 0
|
|
try:
|
|
sys_ret = main()
|
|
except:
|
|
traceback.print_exc()
|
|
sys_ret = 1
|
|
finally:
|
|
sys.exit(sys_ret)
|
|
|