#!/usr/bin/env python3 # Copyright 2020 Google LLC # # Licensed under the the Apache License v2.0 with LLVM Exceptions (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://llvm.org/LICENSE.txt # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import argparse import glob import json import logging import os import sys import uuid if __name__ == '__main__': sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) from phabtalk.phabtalk import PhabTalk from buildkite.utils import format_url def maybe_add_url_artifact(phab: PhabTalk, phid: str, url: str, name: str): if phid is None: logging.warning('PHID is not provided, cannot create URL artifact') return phab.create_artifact(phid, str(uuid.uuid4()), 'uri', {'uri': url, 'ui.external': True, 'name': name}) if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--log-level', type=str, default='WARNING') args = parser.parse_args() logging.basicConfig(level=args.log_level, format='%(levelname)-7s %(message)s') print(f'Branch {os.getenv("BUILDKITE_BRANCH")} at {os.getenv("BUILDKITE_REPO")}') ph_buildable_diff = os.getenv('ph_buildable_diff') if ph_buildable_diff is not None: url = f'https://reviews.llvm.org/D{os.getenv("ph_buildable_revision")}?id={ph_buildable_diff}' print(f'Review: {format_url(url)}') if os.getenv('BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER') is not None: url = f'https://buildkite.com/llvm-project/' \ f'{os.getenv("BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG")}/' \ f'builds/{os.getenv("BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER")}' print(f'Triggered from build {format_url(url)}') success = True for path in glob.glob("*_result.json"): logging.info(f'analysing {path}') with open(path, 'r') as f: report = json.load(f) logging.info(report) success = success and report['success'] phabtalk = PhabTalk(os.getenv('CONDUIT_TOKEN'), 'https://reviews.llvm.org/api/', False) build_url = f'https://reviews.llvm.org/harbormaster/build/{os.getenv("ph_build_id")}' print(f'Reporting results to Phabricator build {format_url(build_url)}') ph_buildable_diff = os.getenv('ph_buildable_diff') ph_target_phid = os.getenv('ph_target_phid') phabtalk.update_build_status(ph_buildable_diff, ph_target_phid, False, success) bug_url = f'https://github.com/google/llvm-premerge-checks/issues/new?assignees=&labels=bug' \ f'&template=bug_report.md&title=buildkite build {os.getenv("BUILDKITE_PIPELINE_SLUG")} ' \ f'{os.getenv("BUILDKITE_BUILD_NUMBER")}' print(f'{format_url(bug_url, "report issue")}')