From 3bae761dcbf7c37645906045646750a6dae62044 Mon Sep 17 00:00:00 2001 From: MyroTk <44327070+MyroTk@users.noreply.github.com> Date: Wed, 26 Aug 2026 12:58:37 -0400 Subject: [PATCH 1/4] Update Dockerfile.alpine --- docker/server/Dockerfile.alpine | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/server/Dockerfile.alpine b/docker/server/Dockerfile.alpine index dd742ddc6374..3fea5228c1b5 100644 --- a/docker/server/Dockerfile.alpine +++ b/docker/server/Dockerfile.alpine @@ -107,6 +107,9 @@ RUN mkdir -p \ && chown root:clickhouse "${DEFAULT_LOG_DIR}" \ && chmod ugo+Xrw -R "${DEFAULT_DATA_DIR}" "${DEFAULT_LOG_DIR}" "${DEFAULT_CLIENT_CONFIG_DIR}" "${DEFAULT_SERVER_CONFIG_DIR}" +RUN apk update +RUN apk add --upgrade libssl3 libcrypto3 + VOLUME "${DEFAULT_DATA_DIR}" EXPOSE 9000 8123 9009 From 3eb782d2090682e0b5404ce84c7238df4c942a02 Mon Sep 17 00:00:00 2001 From: MyroTk Date: Wed, 26 Aug 2026 19:40:02 -0400 Subject: [PATCH 2/4] add stripped build job upload --- ci/defs/job_configs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/defs/job_configs.py b/ci/defs/job_configs.py index c860ec184767..3d65c8f09b1f 100644 --- a/ci/defs/job_configs.py +++ b/ci/defs/job_configs.py @@ -416,6 +416,7 @@ class JobConfigs: parameter=BuildTypes.AMD_RELEASE, provides=[ ArtifactNames.CH_AMD_RELEASE, + ArtifactNames.CH_AMD_RELEASE_STRIPPED, ArtifactNames.DEB_AMD_RELEASE, ArtifactNames.RPM_AMD_RELEASE, ArtifactNames.TGZ_AMD_RELEASE, @@ -427,6 +428,7 @@ class JobConfigs: parameter=BuildTypes.ARM_RELEASE, provides=[ ArtifactNames.CH_ARM_RELEASE, + ArtifactNames.CH_ARM_RELEASE_STRIPPED, ArtifactNames.DEB_ARM_RELEASE, ArtifactNames.RPM_ARM_RELEASE, ArtifactNames.TGZ_ARM_RELEASE, From 540a43d36fc52ba63f3ce18a9edc7e865beb956e Mon Sep 17 00:00:00 2001 From: MyroTk Date: Wed, 26 Aug 2026 19:48:15 -0400 Subject: [PATCH 3/4] update community pr --- .github/workflows/pull_request_community.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/pull_request_community.yml b/.github/workflows/pull_request_community.yml index ebeee33fc46d..02500dae0cce 100644 --- a/.github/workflows/pull_request_community.yml +++ b/.github/workflows/pull_request_community.yml @@ -992,6 +992,13 @@ jobs: path: ci/tmp/build/programs/self-extracting/clickhouse + - name: Upload artifact CH_AMD_RELEASE_STRIPPED + uses: actions/upload-artifact@v7 + with: + name: CH_AMD_RELEASE_STRIPPED + path: ci/tmp/build/programs/self-extracting/clickhouse-stripped + + - name: Upload artifact DEB_AMD_RELEASE uses: actions/upload-artifact@v7 with: @@ -1077,6 +1084,13 @@ jobs: path: ci/tmp/build/programs/self-extracting/clickhouse + - name: Upload artifact CH_ARM_RELEASE_STRIPPED + uses: actions/upload-artifact@v7 + with: + name: CH_ARM_RELEASE_STRIPPED + path: ci/tmp/build/programs/self-extracting/clickhouse-stripped + + - name: Upload artifact DEB_ARM_RELEASE uses: actions/upload-artifact@v7 with: From 5e6be91466a58f32241d197a970bb2c965b95b6f Mon Sep 17 00:00:00 2001 From: MyroTk Date: Wed, 26 Aug 2026 19:51:09 -0400 Subject: [PATCH 4/4] trigger build