Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/pull_request_community.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions ci/defs/job_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down
3 changes: 3 additions & 0 deletions docker/server/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading