mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
5a400c181b
In #61011 the whole toolchain installation had been removed from the base image to reduce image sizes, and this is a good thing indeed. However it also breaks the symbolizer for sanitizers, which makes stacktraces unreadable, so let's fix this by getting back llvm package, this should be OK, since it's size is not gigabytes, but only 48MiB (at least for llvm-14): # dpkg -L llvm-14| xargs file | grep -v directory | cut -d: -f1 | xargs du -sch | grep total 48M total Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
95 lines
3.2 KiB
Docker
95 lines
3.2 KiB
Docker
# rebuild in #33610
|
|
# docker build -t clickhouse/fasttest .
|
|
ARG FROM_TAG=latest
|
|
FROM clickhouse/test-util:$FROM_TAG
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install \
|
|
brotli \
|
|
clang-${LLVM_VERSION} \
|
|
clang-tidy-${LLVM_VERSION} \
|
|
cmake \
|
|
expect \
|
|
file \
|
|
libclang-${LLVM_VERSION}-dev \
|
|
libclang-rt-${LLVM_VERSION}-dev \
|
|
lld-${LLVM_VERSION} \
|
|
llvm-${LLVM_VERSION}-dev \
|
|
lsof \
|
|
ninja-build \
|
|
odbcinst \
|
|
psmisc \
|
|
python3 \
|
|
python3-lxml \
|
|
python3-pip \
|
|
python3-requests \
|
|
python3-termcolor \
|
|
unixodbc \
|
|
pv \
|
|
jq \
|
|
zstd \
|
|
--yes --no-install-recommends \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
|
|
|
RUN pip3 install numpy==1.26.3 scipy==1.12.0 pandas==1.5.3 Jinja2==3.1.3
|
|
|
|
# This symlink is required by gcc to find the lld linker
|
|
RUN ln -s /usr/bin/lld-${LLVM_VERSION} /usr/bin/ld.lld
|
|
# FIXME: workaround for "The imported target "merge-fdata" references the file" error
|
|
# https://salsa.debian.org/pkg-llvm-team/llvm-toolchain/-/commit/992e52c0b156a5ba9c6a8a54f8c4857ddd3d371d
|
|
RUN sed -i '/_IMPORT_CHECK_FILES_FOR_\(mlir-\|llvm-bolt\|merge-fdata\|MLIR\)/ {s|^|#|}' /usr/lib/llvm-${LLVM_VERSION}/lib/cmake/llvm/LLVMExports-*.cmake
|
|
|
|
ARG CCACHE_VERSION=4.6.1
|
|
RUN mkdir /tmp/ccache \
|
|
&& cd /tmp/ccache \
|
|
&& curl -L \
|
|
-O https://github.com/ccache/ccache/releases/download/v$CCACHE_VERSION/ccache-$CCACHE_VERSION.tar.xz \
|
|
-O https://github.com/ccache/ccache/releases/download/v$CCACHE_VERSION/ccache-$CCACHE_VERSION.tar.xz.asc \
|
|
&& gpg --recv-keys --keyserver hkps://keyserver.ubuntu.com 5A939A71A46792CF57866A51996DDA075594ADB8 \
|
|
&& gpg --verify ccache-4.6.1.tar.xz.asc \
|
|
&& tar xf ccache-$CCACHE_VERSION.tar.xz \
|
|
&& cd /tmp/ccache/ccache-$CCACHE_VERSION \
|
|
&& cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
-DZSTD_FROM_INTERNET=ON \
|
|
-DREDIS_STORAGE_BACKEND=OFF \
|
|
-Wno-dev \
|
|
-B build \
|
|
-S . \
|
|
&& make VERBOSE=1 -C build \
|
|
&& make install -C build \
|
|
&& cd / \
|
|
&& rm -rf /tmp/ccache
|
|
|
|
ARG TARGETARCH
|
|
ARG SCCACHE_VERSION=v0.7.7
|
|
ENV SCCACHE_IGNORE_SERVER_IO_ERROR=1
|
|
# sccache requires a value for the region. So by default we use The Default Region
|
|
ENV SCCACHE_REGION=us-east-1
|
|
RUN arch=${TARGETARCH:-amd64} \
|
|
&& case $arch in \
|
|
amd64) rarch=x86_64 ;; \
|
|
arm64) rarch=aarch64 ;; \
|
|
esac \
|
|
&& curl -Ls "https://github.com/mozilla/sccache/releases/download/$SCCACHE_VERSION/sccache-$SCCACHE_VERSION-$rarch-unknown-linux-musl.tar.gz" | \
|
|
tar xz -C /tmp \
|
|
&& mv "/tmp/sccache-$SCCACHE_VERSION-$rarch-unknown-linux-musl/sccache" /usr/bin \
|
|
&& rm "/tmp/sccache-$SCCACHE_VERSION-$rarch-unknown-linux-musl" -r
|
|
|
|
# Give suid to gdb to grant it attach permissions
|
|
# chmod 777 to make the container user independent
|
|
RUN chmod u+s /usr/bin/gdb \
|
|
&& mkdir -p /var/lib/clickhouse \
|
|
&& chmod 777 /var/lib/clickhouse
|
|
|
|
ENV TZ=Europe/Amsterdam
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
ENV COMMIT_SHA=''
|
|
ENV PULL_REQUEST_NUMBER=''
|
|
ENV COPY_CLICKHOUSE_BINARY_TO_OUTPUT=0
|
|
|
|
COPY run.sh /
|
|
CMD ["/bin/bash", "/run.sh"]
|