Fix build check

This commit is contained in:
alesapin 2021-10-25 18:14:49 +03:00
parent 566fa354dc
commit f757ceade4

View File

@ -20,6 +20,8 @@ def get_build_config(build_check_name, build_number, repo_path):
build_config_name = 'build_config'
elif build_check_name == 'ClickHouse special build check (actions)':
build_config_name = 'special_build_config'
else:
raise Exception(f"Unknown build check name {build_check_name}")
ci_config_path = os.path.join(repo_path, "tests/ci/ci_config.json")
with open(ci_config_path, 'r') as ci_config: