2021-12-24 15:10:06 +00:00
|
|
|
# docker build -t clickhouse/binary-builder .
|
2022-07-29 12:31:53 +00:00
|
|
|
ARG FROM_TAG=latest
|
2024-02-16 15:52:15 +00:00
|
|
|
FROM clickhouse/fasttest:$FROM_TAG
|
2023-02-09 18:13:44 +00:00
|
|
|
ENV CC=clang-${LLVM_VERSION}
|
|
|
|
ENV CXX=clang++-${LLVM_VERSION}
|
|
|
|
|
2024-03-14 13:16:33 +00:00
|
|
|
# If the cctools is updated, then first build it in the CI, then update here in a different commit
|
|
|
|
COPY --from=clickhouse/cctools:d9e3596e706b /cctools /cctools
|
|
|
|
|
2023-02-09 18:10:06 +00:00
|
|
|
# Rust toolchain and libraries
|
|
|
|
ENV RUSTUP_HOME=/rust/rustup
|
|
|
|
ENV CARGO_HOME=/rust/cargo
|
|
|
|
ENV PATH="/rust/cargo/bin:${PATH}"
|
|
|
|
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y && \
|
|
|
|
chmod 777 -R /rust && \
|
2024-04-09 17:16:46 +00:00
|
|
|
rustup toolchain install nightly-2024-04-01 && \
|
|
|
|
rustup default nightly-2024-04-01 && \
|
2023-12-15 15:35:13 +00:00
|
|
|
rustup toolchain remove stable && \
|
2023-06-03 19:31:43 +00:00
|
|
|
rustup component add rust-src && \
|
2023-07-25 04:57:47 +00:00
|
|
|
rustup target add x86_64-unknown-linux-gnu && \
|
2023-02-09 18:10:06 +00:00
|
|
|
rustup target add aarch64-unknown-linux-gnu && \
|
|
|
|
rustup target add x86_64-apple-darwin && \
|
|
|
|
rustup target add x86_64-unknown-freebsd && \
|
|
|
|
rustup target add aarch64-apple-darwin && \
|
2023-07-25 04:57:47 +00:00
|
|
|
rustup target add powerpc64le-unknown-linux-gnu && \
|
|
|
|
rustup target add x86_64-unknown-linux-musl && \
|
|
|
|
rustup target add aarch64-unknown-linux-musl && \
|
|
|
|
rustup target add riscv64gc-unknown-linux-gnu
|
2019-10-24 12:56:30 +00:00
|
|
|
|
2023-02-09 18:10:06 +00:00
|
|
|
# A cross-linker for RISC-V 64 (we need it, because LLVM's LLD does not work):
|
2021-09-08 15:06:15 +00:00
|
|
|
RUN add-apt-repository ppa:ubuntu-toolchain-r/test --yes \
|
|
|
|
&& apt-get update \
|
2023-02-09 18:10:06 +00:00
|
|
|
&& apt-get install --yes \
|
|
|
|
binutils-riscv64-linux-gnu \
|
|
|
|
build-essential \
|
2023-02-09 15:43:24 +00:00
|
|
|
python3-boto3 \
|
2023-02-09 18:10:06 +00:00
|
|
|
yasm \
|
|
|
|
zstd \
|
2023-09-11 21:10:03 +00:00
|
|
|
zip \
|
2023-02-09 18:10:06 +00:00
|
|
|
&& apt-get clean \
|
2024-01-29 13:00:22 +00:00
|
|
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
2020-09-09 10:51:01 +00:00
|
|
|
|
2023-02-09 18:10:06 +00:00
|
|
|
# Download toolchain and SDK for Darwin
|
2023-03-23 11:43:05 +00:00
|
|
|
RUN curl -sL -O https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.0.sdk.tar.xz
|
2022-08-14 03:57:55 +00:00
|
|
|
|
2023-08-10 20:01:53 +00:00
|
|
|
# Download and install mold 2.0 for s390x build
|
2024-04-30 10:02:19 +00:00
|
|
|
RUN curl -Lo /tmp/mold.tar.gz "https://github.com/rui314/mold/releases/download/v2.0.0/mold-2.0.0-x86_64-linux.tar.gz" \
|
|
|
|
&& mkdir /tmp/mold \
|
|
|
|
&& tar -xzf /tmp/mold.tar.gz -C /tmp/mold \
|
|
|
|
&& cp -r /tmp/mold/mold*/* /usr \
|
|
|
|
&& rm -rf /tmp/mold \
|
|
|
|
&& rm /tmp/mold.tar.gz
|
2023-08-10 20:01:53 +00:00
|
|
|
|
2022-02-08 18:12:04 +00:00
|
|
|
# Architecture of the image when BuildKit/buildx is used
|
|
|
|
ARG TARGETARCH
|
2022-10-16 19:39:45 +00:00
|
|
|
ARG NFPM_VERSION=2.20.0
|
2022-02-08 18:12:04 +00:00
|
|
|
|
|
|
|
RUN arch=${TARGETARCH:-amd64} \
|
2023-02-09 18:10:48 +00:00
|
|
|
&& curl -Lo /tmp/nfpm.deb "https://github.com/goreleaser/nfpm/releases/download/v${NFPM_VERSION}/nfpm_${arch}.deb" \
|
|
|
|
&& dpkg -i /tmp/nfpm.deb \
|
|
|
|
&& rm /tmp/nfpm.deb
|
2020-09-09 10:51:01 +00:00
|
|
|
|
2023-06-27 21:10:56 +00:00
|
|
|
ARG GO_VERSION=1.19.10
|
2024-03-21 01:52:51 +00:00
|
|
|
# We needed go for clickhouse-diagnostics (it is not used anymore)
|
2022-06-30 16:52:59 +00:00
|
|
|
RUN arch=${TARGETARCH:-amd64} \
|
2023-02-09 18:10:48 +00:00
|
|
|
&& curl -Lo /tmp/go.tgz "https://go.dev/dl/go${GO_VERSION}.linux-${arch}.tar.gz" \
|
|
|
|
&& tar -xzf /tmp/go.tgz -C /usr/local/ \
|
|
|
|
&& rm /tmp/go.tgz
|
2022-06-30 16:52:59 +00:00
|
|
|
|
|
|
|
ENV PATH="$PATH:/usr/local/go/bin"
|
|
|
|
ENV GOPATH=/workdir/go
|
|
|
|
ENV GOCACHE=/workdir/
|
|
|
|
|
2023-03-23 11:43:05 +00:00
|
|
|
ARG CLANG_TIDY_SHA1=c191254ea00d47ade11d7170ef82fe038c213774
|
2023-02-09 18:10:48 +00:00
|
|
|
RUN curl -Lo /usr/bin/clang-tidy-cache \
|
|
|
|
"https://raw.githubusercontent.com/matus-chochlik/ctcache/$CLANG_TIDY_SHA1/clang-tidy-cache" \
|
|
|
|
&& chmod +x /usr/bin/clang-tidy-cache
|
2022-11-02 19:29:13 +00:00
|
|
|
|
2022-05-13 10:50:16 +00:00
|
|
|
RUN mkdir /workdir && chmod 777 /workdir
|
|
|
|
WORKDIR /workdir
|
2022-04-02 08:33:40 +00:00
|
|
|
|
2019-04-25 12:29:28 +00:00
|
|
|
COPY build.sh /
|
2022-03-16 18:52:19 +00:00
|
|
|
CMD ["bash", "-c", "/build.sh 2>&1"]
|