mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
3743b4a2ed
Rebuild for clang 18.1.3, that contains a workaround [1] for sanitizers
issue [2]:
$ git tag --contains c2a57034eff048cd36c563c8e0051db3a70991b3 | tail -1
llvmorg-18.1.3
[1]: c2a57034ef
[2]: https://github.com/ClickHouse/ClickHouse/issues/64086
Since right now version is not enough:
$ docker run --rm -it clickhouse/test-util llvm-nm-18 --version
llvm-nm, compatible with GNU nm
Ubuntu LLVM version 18.1.2
Optimized build.
But I don't see any fix for TSan, only MSan, but let's try.
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
68 lines
2.4 KiB
Docker
68 lines
2.4 KiB
Docker
# docker build -t clickhouse/test-util .
|
|
FROM ubuntu:22.04
|
|
|
|
# ARG for quick switch to a given ubuntu mirror
|
|
ARG apt_archive="http://archive.ubuntu.com"
|
|
RUN sed -i "s|http://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
|
|
|
|
# FIXME: rebuild for clang 18.1.3, that contains a workaround [1] for
|
|
# sanitizers issue [2]:
|
|
#
|
|
# $ git tag --contains c2a57034eff048cd36c563c8e0051db3a70991b3 | tail -1
|
|
# llvmorg-18.1.3
|
|
#
|
|
# [1]: https://github.com/llvm/llvm-project/commit/c2a57034eff048cd36c563c8e0051db3a70991b3
|
|
# [2]: https://github.com/ClickHouse/ClickHouse/issues/64086
|
|
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=18
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install \
|
|
apt-transport-https \
|
|
apt-utils \
|
|
ca-certificates \
|
|
curl \
|
|
dnsutils \
|
|
gnupg \
|
|
iputils-ping \
|
|
lsb-release \
|
|
wget \
|
|
--yes --no-install-recommends --verbose-versions \
|
|
&& export LLVM_PUBKEY_HASH="bda960a8da687a275a2078d43c111d66b1c6a893a3275271beedf266c1ff4a0cdecb429c7a5cccf9f486ea7aa43fd27f" \
|
|
&& wget -nv -O /tmp/llvm-snapshot.gpg.key https://apt.llvm.org/llvm-snapshot.gpg.key \
|
|
&& echo "${LLVM_PUBKEY_HASH} /tmp/llvm-snapshot.gpg.key" | sha384sum -c \
|
|
&& apt-key add /tmp/llvm-snapshot.gpg.key \
|
|
&& export CODENAME="$(lsb_release --codename --short | tr 'A-Z' 'a-z')" \
|
|
&& echo "deb https://apt.llvm.org/${CODENAME}/ llvm-toolchain-${CODENAME}-${LLVM_VERSION} main" >> \
|
|
/etc/apt/sources.list \
|
|
&& apt-get update \
|
|
&& apt-get install --yes --no-install-recommends --verbose-versions llvm-${LLVM_VERSION} \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
|
|
|
# Install cmake 3.20+ for Rust support
|
|
# Used https://askubuntu.com/a/1157132 as reference
|
|
RUN curl -s https://apt.kitware.com/keys/kitware-archive-latest.asc | \
|
|
gpg --dearmor - > /etc/apt/trusted.gpg.d/kitware.gpg && \
|
|
echo "deb https://apt.kitware.com/ubuntu/ $(lsb_release -cs) main" >> /etc/apt/sources.list
|
|
|
|
# initial packages
|
|
RUN apt-get update \
|
|
&& apt-get install \
|
|
bash \
|
|
bsdmainutils \
|
|
build-essential \
|
|
gdb \
|
|
git \
|
|
gperf \
|
|
moreutils \
|
|
nasm \
|
|
pigz \
|
|
rename \
|
|
software-properties-common \
|
|
tzdata \
|
|
--yes --no-install-recommends \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
|
|
|
COPY process_functional_tests_result.py /
|