mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
5a90709afe
update coverage tools to llvm-10
36 lines
1.2 KiB
Docker
36 lines
1.2 KiB
Docker
# docker build -t yandex/clickhouse-coverage .
|
|
FROM yandex/clickhouse-deb-builder
|
|
|
|
RUN apt-get --allow-unauthenticated update -y \
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
apt-get --allow-unauthenticated install --yes --no-install-recommends \
|
|
bash \
|
|
fakeroot \
|
|
cmake \
|
|
ccache \
|
|
curl \
|
|
software-properties-common
|
|
|
|
|
|
RUN apt-get --allow-unauthenticated update -y \
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
apt-get --allow-unauthenticated install --yes --no-install-recommends \
|
|
perl \
|
|
lcov \
|
|
clang-10 \
|
|
llvm-10 \
|
|
tzdata
|
|
|
|
|
|
ENV COVERAGE_DIR=/coverage_reports
|
|
ENV SOURCE_DIR=/build
|
|
ENV OUTPUT_DIR=/output
|
|
ENV IGNORE='.*contrib.*'
|
|
|
|
|
|
CMD mkdir -p /build/obj-x86_64-linux-gnu && cd /build/obj-x86_64-linux-gnu && CC=clang-10 CXX=clang++-10 cmake .. && cd /; \
|
|
dpkg -i /package_folder/clickhouse-common-static_*.deb; \
|
|
llvm-profdata-10 merge -sparse ${COVERAGE_DIR}/* -o clickhouse.profdata && \
|
|
llvm-cov-10 export /usr/bin/clickhouse -instr-profile=clickhouse.profdata -j=16 -format=lcov -skip-functions -ignore-filename-regex $IGNORE > output.lcov && \
|
|
genhtml output.lcov --ignore-errors source --output-directory ${OUTPUT_DIR}
|