From 361d73f7a4baa2df437c524964483a886465f140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Mar=C3=ADn?= Date: Fri, 12 Apr 2024 00:07:53 +0200 Subject: [PATCH 1/2] Try to fix Bugfix validation job --- docker/test/stateless/run.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/test/stateless/run.sh b/docker/test/stateless/run.sh index 271f30d187b..898d8265500 100755 --- a/docker/test/stateless/run.sh +++ b/docker/test/stateless/run.sh @@ -16,8 +16,9 @@ ln -snf "/usr/share/zoneinfo/$TZ" /etc/localtime && echo "$TZ" > /etc/timezone dpkg -i package_folder/clickhouse-common-static_*.deb dpkg -i package_folder/clickhouse-common-static-dbg_*.deb -dpkg -i package_folder/clickhouse-odbc-bridge_*.deb -dpkg -i package_folder/clickhouse-library-bridge_*.deb +# Accept failure in the next 2 commands until 23.4 is released (for compatibility and Bugfix validation run) +dpkg -i package_folder/clickhouse-odbc-bridge_*.deb || true +dpkg -i package_folder/clickhouse-library-bridge_*.deb || true dpkg -i package_folder/clickhouse-server_*.deb dpkg -i package_folder/clickhouse-client_*.deb From d903e189c43380e6e1956b9787d9dd2f3189c9a1 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Fri, 12 Apr 2024 01:01:04 +0200 Subject: [PATCH 2/2] Update docker/test/stateless/run.sh --- docker/test/stateless/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/test/stateless/run.sh b/docker/test/stateless/run.sh index 898d8265500..9497b7ecc19 100755 --- a/docker/test/stateless/run.sh +++ b/docker/test/stateless/run.sh @@ -16,7 +16,7 @@ ln -snf "/usr/share/zoneinfo/$TZ" /etc/localtime && echo "$TZ" > /etc/timezone dpkg -i package_folder/clickhouse-common-static_*.deb dpkg -i package_folder/clickhouse-common-static-dbg_*.deb -# Accept failure in the next 2 commands until 23.4 is released (for compatibility and Bugfix validation run) +# Accept failure in the next two commands until 24.4 is released (for compatibility and Bugfix validation run) dpkg -i package_folder/clickhouse-odbc-bridge_*.deb || true dpkg -i package_folder/clickhouse-library-bridge_*.deb || true dpkg -i package_folder/clickhouse-server_*.deb