mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Better checks
This commit is contained in:
parent
300c18d329
commit
f726bc0b8c
@ -114,7 +114,6 @@ if __name__ == "__main__":
|
||||
logging.info("Got images %s", images)
|
||||
if 'clickhouse/fasttest' in images:
|
||||
docker_image += ':' + images['clickhouse/fasttest']
|
||||
break
|
||||
|
||||
logging.info("Got docker image %s", docker_image)
|
||||
for i in range(10):
|
||||
|
@ -88,6 +88,8 @@ def get_image_name(check_name):
|
||||
return 'clickhouse/stateless-test'
|
||||
if 'stateful' in check_name.lower():
|
||||
return 'clickhouse/stateful-test'
|
||||
else:
|
||||
raise Exception(f"Cannot deduce image name based on check name {check_name}")
|
||||
|
||||
|
||||
def dowload_build_with_progress(url, path):
|
||||
|
@ -136,7 +136,9 @@ def main(github_secret_key, github_app_id, push_to_cloudwatch):
|
||||
if push_to_cloudwatch:
|
||||
push_metrics_to_cloudwatch(group_runners, 'RunnersMetrics/' + group)
|
||||
else:
|
||||
print(group, group_runners)
|
||||
print(group)
|
||||
for runner in group_runners:
|
||||
print('\t', runner)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Loading…
Reference in New Issue
Block a user