mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
2430551f1c
Since there were precedents
17 lines
707 B
Docker
17 lines
707 B
Docker
# docker build -t yandex/clickhouse-style-test .
|
|
FROM ubuntu:20.04
|
|
|
|
RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install --yes shellcheck libxml2-utils git python3-pip pylint && pip3 install codespell
|
|
|
|
|
|
# For |& syntax
|
|
SHELL ["bash", "-c"]
|
|
|
|
CMD cd /ClickHouse/utils/check-style && \
|
|
./check-style -n |& tee /test_output/style_output.txt && \
|
|
./check-typos |& tee /test_output/typos_output.txt && \
|
|
./check-whitespaces -n |& tee /test_output/whitespaces_output.txt && \
|
|
./check-duplicate-includes.sh |& tee /test_output/duplicate_output.txt && \
|
|
./shellcheck-run.sh |& tee /test_output/shellcheck_output.txt && \
|
|
true
|