entries in the dataset now store what build system

they use
This commit is contained in:
Karma Riuk
2025-03-17 15:04:33 +01:00
parent d7b3d62c0c
commit 69295801ac
3 changed files with 12 additions and 0 deletions

View File

@ -121,6 +121,7 @@ def process_pull(repo: Repository, pr: PullRequest, dataset: Dataset, repos_dir:
entry.metadata.reason_for_failure = "Couldn't get the build handler"
entry.metadata.successful = False
return
entry.metadata.build_system = build_handler.get_type()
build_handler.set_client(docker_client)
def _check_coverage(files: list[str]):