mirror of https://github.com/axmolengine/axmol.git
refine code
This commit is contained in:
parent
da3e7d80db
commit
5bd0e14b17
|
@ -8,6 +8,9 @@ import sys
|
|||
import traceback
|
||||
from jenkinsapi.jenkins import Jenkins
|
||||
|
||||
access_token = os.environ['GITHUB_ACCESS_TOKEN']
|
||||
Headers = {"Authorization":"token " + access_token}
|
||||
|
||||
http_proxy = ''
|
||||
if(os.environ.has_key('HTTP_PROXY')):
|
||||
http_proxy = os.environ['HTTP_PROXY']
|
||||
|
@ -28,8 +31,6 @@ def check_queue_build(action, pr_num, statuses_url):
|
|||
queues.delete_item(queue)
|
||||
target_url = os.environ['JOB_PULL_REQUEST_BUILD_URL']
|
||||
data = {"state":"error", "target_url":target_url}
|
||||
access_token = os.environ['GITHUB_ACCESS_TOKEN']
|
||||
Headers = {"Authorization":"token " + access_token}
|
||||
try:
|
||||
requests.post(statuses_url, data=json.dumps(data), headers=Headers, proxies = proxyDict)
|
||||
except:
|
||||
|
@ -91,8 +92,7 @@ def main():
|
|||
return(0)
|
||||
|
||||
data = {"state":"pending", "target_url":target_url, "context":"Jenkins CI", "description":"Waiting available build machine..."}
|
||||
access_token = os.environ['GITHUB_ACCESS_TOKEN']
|
||||
Headers = {"Authorization":"token " + access_token}
|
||||
|
||||
|
||||
try:
|
||||
requests.post(statuses_url, data=json.dumps(data), headers=Headers, proxies = proxyDict)
|
||||
|
|
Loading…
Reference in New Issue