diff options
Diffstat (limited to 'ci/travis.py')
-rwxr-xr-x | ci/travis.py | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/ci/travis.py b/ci/travis.py new file mode 100755 index 0000000..f0909ae --- /dev/null +++ b/ci/travis.py @@ -0,0 +1,47 @@ +#!/usr/bin/python3 +import json +import time +import sys + +import requests + + +BRANCH_API_ENDPOINT = "https://api.travis-ci.com/repos/CZ-NIC/knot-resolver/branches/{branch}" +JOB_URL = "https://travis-ci.com/CZ-NIC/knot-resolver/jobs/{job_id}" +TIMEOUT = 600 # 10 mins max +POLL_DELAY = 15 + +job_id = None + + +def exit(msg='', code=1): + print(msg, file=sys.stderr) + if job_id is not None: + print(JOB_URL.format(job_id=job_id)) + sys.exit(code) + + +end_time = time.time() + TIMEOUT +while time.time() < end_time: + response = requests.get( + BRANCH_API_ENDPOINT.format(branch=sys.argv[1]), + headers={"Accept": "application/vnd.travis-ci.2.1+json"}) + if response.status_code == 404: + pass # not created yet? + elif response.status_code == 200: + data = json.loads(response.content.decode('utf-8')) + state = data['branch']['state'] + try: + job_id = data['branch']['job_ids'][0] + except KeyError: + pass + + if state == "errored": + exit("Travis CI Result: ERRORED!") + elif state == "passed": + exit("Travis CI Result: PASSED!", code=0) + else: + exit("API Response Code: {code}".format(response.status_code), code=2) + time.sleep(POLL_DELAY) + +exit("Timed out!") |