Remove useless packages

This commit is contained in:
Alexey Milovidov 2023-07-06 01:49:53 +02:00
parent 095b75e2c7
commit 75d051dd55
7 changed files with 2 additions and 18 deletions

View File

@ -92,8 +92,8 @@ sudo clickhouse stop ||:
for _ in $(seq 1 60); do if [[ $(wget --timeout=1 -q 'localhost:8123' -O-) == 'Ok.' ]]; then sleep 1 ; else break; fi ; done for _ in $(seq 1 60); do if [[ $(wget --timeout=1 -q 'localhost:8123' -O-) == 'Ok.' ]]; then sleep 1 ; else break; fi ; done
grep -Fa "Fatal" /var/log/clickhouse-server/clickhouse-server.log ||: rg -Fa "Fatal" /var/log/clickhouse-server/clickhouse-server.log ||:
pigz < /var/log/clickhouse-server/clickhouse-server.log > /test_output/clickhouse-server.log.gz & zstd < /var/log/clickhouse-server/clickhouse-server.log > /test_output/clickhouse-server.log.zst &
# Compressed (FIXME: remove once only github actions will be left) # Compressed (FIXME: remove once only github actions will be left)
rm /var/log/clickhouse-server/clickhouse-server.log rm /var/log/clickhouse-server/clickhouse-server.log

View File

@ -33,7 +33,6 @@ RUN apt-get update -y \
qemu-user-static \ qemu-user-static \
sqlite3 \ sqlite3 \
sudo \ sudo \
telnet \
tree \ tree \
unixodbc \ unixodbc \
wget \ wget \

View File

@ -8,8 +8,6 @@ RUN apt-get update -y \
apt-get install --yes --no-install-recommends \ apt-get install --yes --no-install-recommends \
bash \ bash \
tzdata \ tzdata \
fakeroot \
debhelper \
parallel \ parallel \
expect \ expect \
python3 \ python3 \
@ -20,7 +18,6 @@ RUN apt-get update -y \
sudo \ sudo \
openssl \ openssl \
netcat-openbsd \ netcat-openbsd \
telnet \
brotli \ brotli \
&& apt-get clean && apt-get clean

View File

@ -8,8 +8,6 @@ RUN apt-get update -y \
apt-get install --yes --no-install-recommends \ apt-get install --yes --no-install-recommends \
bash \ bash \
tzdata \ tzdata \
fakeroot \
debhelper \
parallel \ parallel \
expect \ expect \
python3 \ python3 \
@ -20,7 +18,6 @@ RUN apt-get update -y \
sudo \ sudo \
openssl \ openssl \
netcat-openbsd \ netcat-openbsd \
telnet \
brotli \ brotli \
&& apt-get clean && apt-get clean

View File

@ -44,7 +44,6 @@ RUN apt-get update \
clang-${LLVM_VERSION} \ clang-${LLVM_VERSION} \
clang-tidy-${LLVM_VERSION} \ clang-tidy-${LLVM_VERSION} \
cmake \ cmake \
fakeroot \
gdb \ gdb \
git \ git \
gperf \ gperf \

View File

@ -3,13 +3,6 @@ slug: /zh/development/build
--- ---
# 如何构建 ClickHouse 发布包 {#ru-he-gou-jian-clickhouse-fa-bu-bao} # 如何构建 ClickHouse 发布包 {#ru-he-gou-jian-clickhouse-fa-bu-bao}
## 安装 Git 和 Pbuilder {#an-zhuang-git-he-pbuilder}
``` bash
sudo apt-get update
sudo apt-get install git pbuilder debhelper lsb-release fakeroot sudo debian-archive-keyring debian-keyring
```
## 拉取 ClickHouse 源码 {#la-qu-clickhouse-yuan-ma} ## 拉取 ClickHouse 源码 {#la-qu-clickhouse-yuan-ma}
``` bash ``` bash

View File

@ -1,4 +1,3 @@
drop table if exists rmt; drop table if exists rmt;
create table rmt (n int, m int) engine=ReplicatedMergeTree('/test/02439/{shard}/{database}', '{replica}') partition by n order by n; create table rmt (n int, m int) engine=ReplicatedMergeTree('/test/02439/{shard}/{database}', '{replica}') partition by n order by n;