3 # Copyright (c) 2019-2020 Red Hat, Inc.
6 # Cleber Rosa <crosa@redhat.com>
8 # This work is licensed under the terms of the GNU GPL, version 2 or
9 # later. See the COPYING file in the top-level directory.
12 Checks the GitLab pipeline status for a given commit ID
15 # pylint: disable=C0103
26 class CommunicationFailure(Exception):
27 """Failed to communicate to gitlab.com APIs."""
30 class NoPipelineFound(Exception):
31 """Communication is successfull but pipeline is not found."""
34 def get_local_branch_commit(branch='staging'):
36 Returns the commit sha1 for the *local* branch named "staging"
38 result = subprocess.run(['git', 'rev-parse', branch],
39 stdin=subprocess.DEVNULL,
40 stdout=subprocess.PIPE,
41 stderr=subprocess.DEVNULL,
42 cwd=os.path.dirname(__file__),
43 universal_newlines=True).stdout.strip()
45 raise ValueError("There's no local branch named '%s'" % branch)
47 raise ValueError("Branch '%s' HEAD doesn't look like a sha1" % branch)
51 def get_pipeline_status(project_id, commit_sha1):
53 Returns the JSON content of the pipeline status API response
55 url = '/api/v4/projects/{}/pipelines?sha={}'.format(project_id,
57 connection = http.client.HTTPSConnection('gitlab.com')
58 connection.request('GET', url=url)
59 response = connection.getresponse()
60 if response.code != http.HTTPStatus.OK:
61 raise CommunicationFailure("Failed to receive a successful response")
62 json_response = json.loads(response.read())
64 # As far as I can tell, there should be only one pipeline for the same
65 # project + commit. If this assumption is false, we can add further
66 # filters to the url, such as username, and order_by.
68 raise NoPipelineFound("No pipeline found")
69 return json_response[0]
72 def wait_on_pipeline_success(timeout, interval,
73 project_id, commit_sha):
75 Waits for the pipeline to finish within the given timeout
79 if time.time() >= (start + timeout):
80 msg = ("Timeout (-t/--timeout) of %i seconds reached, "
81 "won't wait any longer for the pipeline to complete")
87 status = get_pipeline_status(project_id, commit_sha)
88 except NoPipelineFound:
89 print('Pipeline has not been found, it may not have been created yet.')
93 pipeline_status = status['status']
94 status_to_wait = ('created', 'waiting_for_resource', 'preparing',
96 if pipeline_status in status_to_wait:
97 print('%s...' % pipeline_status)
101 if pipeline_status == 'success':
104 msg = "Pipeline failed, check: %s" % status['web_url']
110 parser = argparse.ArgumentParser(
111 prog='pipeline-status',
112 description='check or wait on a pipeline status')
114 parser.add_argument('-t', '--timeout', type=int, default=7200,
115 help=('Amount of time (in seconds) to wait for the '
116 'pipeline to complete. Defaults to '
118 parser.add_argument('-i', '--interval', type=int, default=60,
119 help=('Amount of time (in seconds) to wait between '
120 'checks of the pipeline status. Defaults '
122 parser.add_argument('-w', '--wait', action='store_true', default=False,
123 help=('Wether to wait, instead of checking only once '
124 'the status of a pipeline'))
125 parser.add_argument('-p', '--project-id', type=int, default=11167699,
126 help=('The GitLab project ID. Defaults to the project '
127 'for https://gitlab.com/qemu-project/qemu, that '
128 'is, "%(default)s"'))
130 default_commit = get_local_branch_commit()
131 commit_required = False
134 commit_required = True
135 parser.add_argument('-c', '--commit', required=commit_required,
136 default=default_commit,
137 help=('Look for a pipeline associated with the given '
138 'commit. If one is not explicitly given, the '
139 'commit associated with the local branch named '
140 '"staging" is used. Default: %(default)s'))
141 parser.add_argument('--verbose', action='store_true', default=False,
142 help=('A minimal verbosity level that prints the '
143 'overall result of the check/wait'))
150 parser = create_parser()
151 args = parser.parse_args()
155 success = wait_on_pipeline_success(
161 status = get_pipeline_status(args.project_id,
163 success = status['status'] == 'success'
164 except Exception as error: # pylint: disable=W0703
166 print("ERROR: %s" % error.args[0])
167 except KeyboardInterrupt:
169 print("Exiting on user's request")
181 if __name__ == '__main__':