Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .buildbot_dockerfile_debian
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
FROM debian:bookworm
FROM debian:latest
ARG CI_UID
RUN useradd -m -u ${CI_UID} ci
RUN apt-get update && \
apt-get -y install clang-15 make curl procps file git cmake python3 \
apt-get -y install clang-17 make curl procps file git cmake python3 \
libtinfo-dev libzip-dev mold ninja-build gdb
WORKDIR /ci
RUN update-alternatives --install /usr/bin/cc cc /usr/bin/clang-15 999
RUN update-alternatives --set cc /usr/bin/clang-15
RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-15 999
RUN update-alternatives --set c++ /usr/bin/clang++-15
RUN update-alternatives --install /usr/bin/cc cc /usr/bin/clang-17 999
RUN update-alternatives --set cc /usr/bin/clang-17
RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-17 999
RUN update-alternatives --set c++ /usr/bin/clang++-17
RUN update-alternatives --install /usr/bin/ld ld /usr/bin/mold 999
RUN update-alternatives --set ld /usr/bin/mold
RUN ln -sf /usr/bin/clang-15 /usr/bin/clang
RUN ln -sf /usr/bin/clang++-15 /usr/bin/clang++
RUN ln -sf /usr/bin/clang-17 /usr/bin/clang
RUN ln -sf /usr/bin/clang++-17 /usr/bin/clang++
RUN chown ${CI_UID}:${CI_UID} .
COPY --chown=${CI_UID}:${CI_UID} . .
CMD sh -x .buildbot.sh