Fix Docker

This commit is contained in:
Alexey Milovidov 2023-12-12 14:12:10 +01:00
parent 8a68a4247e
commit 7ff3021112
2 changed files with 2 additions and 2 deletions

View File

@ -512,7 +512,7 @@ CHECK_DESCRIPTIONS = [
CheckDescription(
"ClickBench",
"Runs [ClickBench](https://github.com/ClickHouse/ClickBench/) with instant-attach table",
lambda x: x.startswith("Upgrade check ("),
lambda x: x.startswith("ClickBench"),
),
CheckDescription(
"Falback for unknown",

View File

@ -53,7 +53,7 @@ def get_run_command(
env_str = " ".join(envs)
return (
f"docker run --volume={builds_path}:/package_folder "
f"docker run --shm-size=16g --volume={builds_path}:/package_folder "
f"{ci_logs_args}"
f"--volume={result_path}:/test_output "
f"--volume={server_log_path}:/var/log/clickhouse-server "