2020-10-21 11:30:49 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# internal use only for CI
|
|
|
|
# get latest MR information by source branch
|
|
|
|
#
|
2023-08-31 04:55:28 +00:00
|
|
|
# SPDX-FileCopyrightText: 2020-2023 Espressif Systems (Shanghai) CO LTD
|
2022-06-15 14:46:55 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2020-10-21 11:30:49 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
import subprocess
|
2022-11-29 09:11:33 +00:00
|
|
|
import typing as t
|
|
|
|
from pathlib import Path
|
2020-10-21 11:30:49 +00:00
|
|
|
|
|
|
|
from gitlab_api import Gitlab
|
|
|
|
|
2022-11-29 09:11:33 +00:00
|
|
|
if t.TYPE_CHECKING:
|
|
|
|
from gitlab.v4.objects import ProjectCommit, ProjectMergeRequest
|
2020-10-21 11:30:49 +00:00
|
|
|
|
2021-02-01 08:18:16 +00:00
|
|
|
|
2022-11-29 09:11:33 +00:00
|
|
|
def _get_mr_obj(source_branch: str) -> t.Optional['ProjectMergeRequest']:
|
2020-10-21 11:30:49 +00:00
|
|
|
gl = Gitlab(os.getenv('CI_PROJECT_ID', 'espressif/esp-idf'))
|
|
|
|
if not gl.project:
|
|
|
|
return None
|
2022-11-29 09:11:33 +00:00
|
|
|
|
2020-10-21 11:30:49 +00:00
|
|
|
mrs = gl.project.mergerequests.list(state='opened', source_branch=source_branch)
|
|
|
|
if mrs:
|
|
|
|
return mrs[0] # one source branch can only have one opened MR at one moment
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2022-11-29 09:11:33 +00:00
|
|
|
def get_mr_iid(source_branch: str) -> str:
|
2020-10-21 11:30:49 +00:00
|
|
|
mr = _get_mr_obj(source_branch)
|
|
|
|
if not mr:
|
|
|
|
return ''
|
|
|
|
else:
|
|
|
|
return str(mr.iid)
|
|
|
|
|
|
|
|
|
2022-11-29 09:11:33 +00:00
|
|
|
def get_mr_changed_files(source_branch: str) -> t.List[str]:
|
2020-10-21 11:30:49 +00:00
|
|
|
mr = _get_mr_obj(source_branch)
|
|
|
|
if not mr:
|
2022-11-29 09:11:33 +00:00
|
|
|
return []
|
2020-10-21 11:30:49 +00:00
|
|
|
|
2022-11-29 09:11:33 +00:00
|
|
|
git_output = subprocess.check_output(
|
2023-10-04 10:42:51 +00:00
|
|
|
['git', 'diff', '--name-only', '--diff-filter=d', f'origin/{mr.target_branch}...origin/{source_branch}']
|
2022-11-29 09:11:33 +00:00
|
|
|
).decode('utf8')
|
2020-10-21 11:30:49 +00:00
|
|
|
|
2022-11-29 09:11:33 +00:00
|
|
|
return [line.strip() for line in git_output.splitlines() if line.strip()]
|
2020-10-21 11:30:49 +00:00
|
|
|
|
2022-11-29 09:11:33 +00:00
|
|
|
|
|
|
|
def get_mr_commits(source_branch: str) -> t.List['ProjectCommit']:
|
2020-10-21 11:30:49 +00:00
|
|
|
mr = _get_mr_obj(source_branch)
|
|
|
|
if not mr:
|
2022-11-29 09:11:33 +00:00
|
|
|
return []
|
|
|
|
|
|
|
|
return list(mr.commits())
|
|
|
|
|
|
|
|
|
|
|
|
def get_mr_components(source_branch: str) -> t.List[str]:
|
|
|
|
components: t.Set[str] = set()
|
|
|
|
for f in get_mr_changed_files(source_branch):
|
|
|
|
file = Path(f)
|
|
|
|
if (
|
|
|
|
file.parts[0] == 'components'
|
|
|
|
and 'test_apps' not in file.parts
|
|
|
|
and file.parts[-1] != '.build-test-rules.yml'
|
|
|
|
):
|
|
|
|
components.add(file.parts[1])
|
|
|
|
|
|
|
|
return list(components)
|
|
|
|
|
|
|
|
|
2023-08-31 04:55:28 +00:00
|
|
|
def get_target_in_tags(tags: str) -> str:
|
|
|
|
from idf_pytest.constants import TARGET_MARKERS
|
|
|
|
|
|
|
|
for x in tags.split(','):
|
|
|
|
if x in TARGET_MARKERS:
|
|
|
|
return x
|
|
|
|
|
|
|
|
raise RuntimeError(f'No target marker found in {tags}')
|
|
|
|
|
|
|
|
|
2022-11-29 09:11:33 +00:00
|
|
|
def _print_list(_list: t.List[str], separator: str = '\n') -> None:
|
|
|
|
print(separator.join(_list))
|
2020-10-21 11:30:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = argparse.ArgumentParser(description='Get the latest merge request info by pipeline')
|
2022-11-29 09:11:33 +00:00
|
|
|
actions = parser.add_subparsers(dest='action', help='info type', required=True)
|
2020-10-21 11:30:49 +00:00
|
|
|
|
|
|
|
common_args = argparse.ArgumentParser(add_help=False)
|
2022-11-29 09:11:33 +00:00
|
|
|
common_args.add_argument('src_branch', help='source branch')
|
2020-10-21 11:30:49 +00:00
|
|
|
|
|
|
|
actions.add_parser('id', parents=[common_args])
|
|
|
|
actions.add_parser('files', parents=[common_args])
|
|
|
|
actions.add_parser('commits', parents=[common_args])
|
2022-11-29 09:11:33 +00:00
|
|
|
actions.add_parser('components', parents=[common_args])
|
2023-08-31 04:55:28 +00:00
|
|
|
target = actions.add_parser('target_in_tags')
|
|
|
|
target.add_argument('tags', help='comma separated tags, e.g., esp32,generic')
|
2020-10-21 11:30:49 +00:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
if args.action == 'id':
|
|
|
|
print(get_mr_iid(args.src_branch))
|
|
|
|
elif args.action == 'files':
|
2022-11-29 09:11:33 +00:00
|
|
|
_print_list(get_mr_changed_files(args.src_branch))
|
2020-10-21 11:30:49 +00:00
|
|
|
elif args.action == 'commits':
|
2022-11-29 09:11:33 +00:00
|
|
|
_print_list([commit.id for commit in get_mr_commits(args.src_branch)])
|
|
|
|
elif args.action == 'components':
|
|
|
|
_print_list(get_mr_components(args.src_branch))
|
2023-08-31 04:55:28 +00:00
|
|
|
elif args.action == 'target_in_tags':
|
|
|
|
print(get_target_in_tags(args.tags))
|
2020-10-21 11:30:49 +00:00
|
|
|
else:
|
|
|
|
raise NotImplementedError('not possible to get here')
|