Try to fix binary compatibility check + extend check to library-bridge

This commit is contained in:
Robert Schulze 2022-09-28 09:56:58 +00:00
parent a5311fb976
commit a300ea6024
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A
2 changed files with 2 additions and 1 deletions

@ -1 +1 @@
Subproject commit 71e5e5f48761c6ae1b17c1e5afe1d1dcfdbafdec
Subproject commit 6ca2b5b3927226f6bcf6c656f502ff5d012ad9b6

View File

@ -99,6 +99,7 @@ def get_run_commands(
return [
f"readelf -s {build_path}/usr/bin/clickhouse | grep '@GLIBC_' > {result_folder}/glibc.log",
f"readelf -s {build_path}/usr/bin/clickhouse-odbc-bridge | grep '@GLIBC_' >> {result_folder}/glibc.log",
f"readelf -s {build_path}/usr/bin/clickhouse-library-bridge | grep '@GLIBC_' >> {result_folder}/glibc.log",
f"docker run --network=host --volume={build_path}/usr/bin/clickhouse:/clickhouse "
f"--volume={build_path}/etc/clickhouse-server:/config "
f"--volume={server_log_folder}:/var/log/clickhouse-server {image_ubuntu} > {result_folder}/ubuntu:12.04",