2020-03-12 19:04:27 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# (c) 2020 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
2020-03-20 20:01:59 +01:00
|
|
|
from ansible.utils.color import stringc
|
2020-03-12 19:04:27 +01:00
|
|
|
import requests
|
|
|
|
import sys
|
2021-04-01 14:55:09 +02:00
|
|
|
import datetime
|
|
|
|
|
|
|
|
# Following changes should be made to improve the overall style:
|
|
|
|
# TODO use argparse for arguments.
|
|
|
|
# TODO use new style formatting method.
|
|
|
|
# TODO use requests session.
|
|
|
|
# TODO type hints.
|
2020-03-12 19:04:27 +01:00
|
|
|
|
2020-03-23 17:39:19 +01:00
|
|
|
BRANCH = 'devel'
|
2021-04-01 14:55:09 +02:00
|
|
|
PIPELINE_ID = 20
|
|
|
|
MAX_AGE = datetime.timedelta(hours=24)
|
2020-03-12 19:04:27 +01:00
|
|
|
|
|
|
|
if len(sys.argv) > 1:
|
|
|
|
BRANCH = sys.argv[1]
|
|
|
|
|
|
|
|
|
|
|
|
def get_coverage_runs():
|
2021-04-01 14:55:09 +02:00
|
|
|
list_response = requests.get("https://dev.azure.com/ansible/ansible/_apis/pipelines/%s/runs?api-version=6.0-preview.1" % PIPELINE_ID)
|
|
|
|
list_response.raise_for_status()
|
2020-03-12 19:04:27 +01:00
|
|
|
|
2021-04-01 14:55:09 +02:00
|
|
|
runs = list_response.json()
|
2020-03-12 19:04:27 +01:00
|
|
|
|
|
|
|
coverage_runs = []
|
2021-04-01 14:55:09 +02:00
|
|
|
for run_summary in runs["value"][0:1000]:
|
|
|
|
run_response = requests.get(run_summary['url'])
|
|
|
|
run_response.raise_for_status()
|
|
|
|
run = run_response.json()
|
2020-03-12 19:04:27 +01:00
|
|
|
|
2021-04-01 14:55:09 +02:00
|
|
|
if run['resources']['repositories']['self']['refName'] != 'refs/heads/%s' % BRANCH:
|
2020-03-12 19:04:27 +01:00
|
|
|
continue
|
2021-04-01 14:55:09 +02:00
|
|
|
|
|
|
|
if 'finishedDate' in run_summary:
|
|
|
|
age = datetime.datetime.now() - datetime.datetime.strptime(run['finishedDate'].split(".")[0], "%Y-%m-%dT%H:%M:%S")
|
|
|
|
if age > MAX_AGE:
|
|
|
|
break
|
|
|
|
|
|
|
|
artifact_response = requests.get("https://dev.azure.com/ansible/ansible/_apis/build/builds/%s/artifacts?api-version=6.0" % run['id'])
|
|
|
|
artifact_response.raise_for_status()
|
|
|
|
|
|
|
|
artifacts = artifact_response.json()['value']
|
|
|
|
if any([a["name"].startswith("Coverage") for a in artifacts]):
|
|
|
|
# TODO wrongfully skipped if all jobs failed.
|
2020-03-12 19:04:27 +01:00
|
|
|
coverage_runs.append(run)
|
|
|
|
|
|
|
|
return coverage_runs
|
|
|
|
|
|
|
|
|
|
|
|
def pretty_coverage_runs(runs):
|
2020-03-20 20:01:59 +01:00
|
|
|
ended = []
|
|
|
|
in_progress = []
|
|
|
|
for run in runs:
|
2021-04-01 14:55:09 +02:00
|
|
|
if run.get('finishedDate'):
|
2020-03-20 20:01:59 +01:00
|
|
|
ended.append(run)
|
|
|
|
else:
|
|
|
|
in_progress.append(run)
|
|
|
|
|
2021-04-01 14:55:09 +02:00
|
|
|
for run in sorted(ended, key=lambda x: x['finishedDate']):
|
|
|
|
if run['result'] == "succeeded":
|
|
|
|
print('🙂 [%s] https://dev.azure.com/ansible/ansible/_build/results?buildId=%s (%s)' % (
|
2020-03-20 20:01:59 +01:00
|
|
|
stringc('PASS', 'green'),
|
2021-04-01 14:55:09 +02:00
|
|
|
run['id'],
|
|
|
|
run['finishedDate']))
|
2020-03-12 19:04:27 +01:00
|
|
|
else:
|
2021-04-01 14:55:09 +02:00
|
|
|
print('😢 [%s] https://dev.azure.com/ansible/ansible/_build/results?buildId=%s (%s)' % (
|
2020-03-20 20:01:59 +01:00
|
|
|
stringc('FAIL', 'red'),
|
2021-04-01 14:55:09 +02:00
|
|
|
run['id'],
|
|
|
|
run['finishedDate']))
|
2020-03-20 20:01:59 +01:00
|
|
|
|
|
|
|
if in_progress:
|
|
|
|
print('The following runs are ongoing:')
|
|
|
|
for run in in_progress:
|
2021-04-01 14:55:09 +02:00
|
|
|
print('🤔 [%s] https://dev.azure.com/ansible/ansible/_build/results?buildId=%s' % (
|
2020-03-20 20:01:59 +01:00
|
|
|
stringc('FATE', 'yellow'),
|
2021-04-01 14:55:09 +02:00
|
|
|
run['id']))
|
2020-03-12 19:04:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
pretty_coverage_runs(get_coverage_runs())
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|