2022-01-13 18:03:34 +00:00
|
|
|
# rebuild in #33610
|
2021-09-06 11:33:39 +00:00
|
|
|
# docker build -t clickhouse/test-base .
|
2021-12-24 15:10:06 +00:00
|
|
|
ARG FROM_TAG=latest
|
|
|
|
FROM clickhouse/test-util:$FROM_TAG
|
2020-08-20 17:54:51 +00:00
|
|
|
|
2021-03-30 16:03:55 +00:00
|
|
|
RUN apt-get update \
|
2020-08-25 03:11:01 +00:00
|
|
|
&& apt-get install \
|
|
|
|
lcov \
|
2022-07-29 12:31:53 +00:00
|
|
|
netbase \
|
2020-08-25 03:11:01 +00:00
|
|
|
perl \
|
2021-06-23 21:33:22 +00:00
|
|
|
pv \
|
2023-01-01 19:53:06 +00:00
|
|
|
ripgrep \
|
|
|
|
zstd \
|
2023-07-30 02:22:36 +00:00
|
|
|
locales \
|
2023-12-11 02:10:17 +00:00
|
|
|
sudo \
|
2024-01-29 13:00:22 +00:00
|
|
|
--yes --no-install-recommends \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
|
|
|
|
2020-08-20 17:54:51 +00:00
|
|
|
|
2020-09-20 22:07:56 +00:00
|
|
|
# Sanitizer options for services (clickhouse-server)
|
2021-11-24 13:00:15 +00:00
|
|
|
# Set resident memory limit for TSAN to 45GiB (46080MiB) to avoid OOMs in Stress tests
|
2021-11-24 09:47:44 +00:00
|
|
|
# and MEMORY_LIMIT_EXCEEDED exceptions in Functional tests (total memory limit in Functional tests is ~55.24 GiB).
|
|
|
|
# TSAN will flush shadow memory when reaching this limit.
|
|
|
|
# It may cause false-negatives, but it's better than OOM.
|
2023-08-04 20:58:22 +00:00
|
|
|
RUN echo "TSAN_OPTIONS='verbosity=1000 halt_on_error=1 abort_on_error=1 history_size=7 memory_limit_mb=46080 second_deadlock_stack=1'" >> /etc/environment
|
2022-09-06 12:12:05 +00:00
|
|
|
RUN echo "UBSAN_OPTIONS='print_stacktrace=1'" >> /etc/environment
|
|
|
|
RUN echo "MSAN_OPTIONS='abort_on_error=1 poison_in_dtor=1'" >> /etc/environment
|
|
|
|
RUN echo "LSAN_OPTIONS='suppressions=/usr/share/clickhouse-test/config/lsan_suppressions.txt'" >> /etc/environment
|
2020-09-20 22:07:56 +00:00
|
|
|
# Sanitizer options for current shell (not current, but the one that will be spawned on "docker run")
|
|
|
|
# (but w/o verbosity for TSAN, otherwise test.reference will not match)
|
2023-08-04 20:58:22 +00:00
|
|
|
ENV TSAN_OPTIONS='halt_on_error=1 abort_on_error=1 history_size=7 memory_limit_mb=46080 second_deadlock_stack=1'
|
2020-09-20 22:07:56 +00:00
|
|
|
ENV UBSAN_OPTIONS='print_stacktrace=1'
|
2021-04-27 05:48:06 +00:00
|
|
|
ENV MSAN_OPTIONS='abort_on_error=1 poison_in_dtor=1'
|
2020-08-20 17:54:51 +00:00
|
|
|
|
2024-03-11 08:49:25 +00:00
|
|
|
# for external_symbolizer_path
|
|
|
|
RUN ln -s /usr/bin/llvm-symbolizer-${LLVM_VERSION} /usr/bin/llvm-symbolizer
|
|
|
|
|
2023-07-30 02:22:36 +00:00
|
|
|
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen en_US.UTF-8
|
|
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
|
2023-07-30 03:18:52 +00:00
|
|
|
ENV TZ=Europe/Amsterdam
|
2021-01-06 04:19:48 +00:00
|
|
|
RUN ln -snf "/usr/share/zoneinfo/$TZ" /etc/localtime && echo "$TZ" > /etc/timezone
|
2020-09-28 12:11:36 +00:00
|
|
|
|
2023-08-12 00:14:58 +00:00
|
|
|
# This script is used to setup realtime export of server logs from the CI into external ClickHouse cluster:
|
|
|
|
COPY setup_export_logs.sh /
|
|
|
|
|
2020-08-25 03:11:01 +00:00
|
|
|
CMD sleep 1
|