From: Tomas Krizek Date: Wed, 7 Nov 2018 13:19:17 +0000 (+0100) Subject: ci: add OSX test via Travis CI API X-Git-Tag: v3.2.0~33^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=979c65d82f53cf1484f3e109528348eb8c8f3023;p=thirdparty%2Fknot-resolver.git ci: add OSX test via Travis CI API --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 77392ce13..989efba02 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -223,6 +223,17 @@ installcheck:valgrind:linux:amd64: - linux - amd64 +osx:build: + stage: test + except: + - master + script: + - ci/travis.py ${CI_COMMIT_REF_NAME} + dependencies: [] + tags: + - docker + + # temporarily disabled - we need to fix issues first #deckard:linux:amd64:valgrind: # stage: test diff --git a/ci/travis.py b/ci/travis.py new file mode 100755 index 000000000..f0909ae15 --- /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!")