Skip to content

Commit c9cd2bf

Browse files
authored
Merge pull request ClickHouse#78421 from azat/bump-aspell
ci: bump aspell (it does not know some words that even I know)
2 parents 6b608c8 + 0ca22ce commit c9cd2bf

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ci/docker/style-test/Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,23 @@ RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install --yes \
77
python3-pip \
88
locales \
99
ripgrep \
10+
curl \
1011
git \
1112
&& apt-get clean \
1213
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
1314

15+
ARG ASPELL_VERSION=2020.12.07-0
16+
RUN curl -O https://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-$ASPELL_VERSION.tar.bz2 && \
17+
curl -O https://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-$ASPELL_VERSION.tar.bz2.sig && \
18+
gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 71C636695B147849 && \
19+
gpg --verify aspell6-en-$ASPELL_VERSION.tar.bz2.sig aspell6-en-$ASPELL_VERSION.tar.bz2 && \
20+
tar xvf aspell6-en-$ASPELL_VERSION.tar.bz2 && \
21+
cd aspell6-en-$ASPELL_VERSION && \
22+
pwd && \
23+
./configure && make && make install && \
24+
cd .. && \
25+
rm -fr aspell6-en-$ASPELL_VERSION*
26+
1427
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen en_US.UTF-8
1528
ENV LC_ALL=en_US.UTF-8
1629

0 commit comments

Comments
 (0)