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
Expand Up @@ -4,16 +4,16 @@ RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \
--mount=target=/var/cache/apt,type=cache,sharing=locked \
rm -f /etc/apt/apt.conf.d/docker-clean && \
apt-get update && \
apt-get -y install clang-15 make curl procps file git cmake python3 \
libtinfo-dev libzip-dev mold ninja-build gdb && \
update-alternatives --install /usr/bin/cc cc /usr/bin/clang-15 999 && \
update-alternatives --set cc /usr/bin/clang-15 && \
update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-15 999 && \
update-alternatives --set c++ /usr/bin/clang++-15 && \
apt-get -y install clang-17 make curl procps file git cmake python3 \
libtinfo-dev libzip-dev mold ninja-build gdb pipx rsync && \
update-alternatives --install /usr/bin/cc cc /usr/bin/clang-17 999 && \
update-alternatives --set cc /usr/bin/clang-17 && \
update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-17 999 && \
update-alternatives --set c++ /usr/bin/clang++-17 && \
update-alternatives --install /usr/bin/ld ld /usr/bin/mold 999 && \
update-alternatives --set ld /usr/bin/mold && \
ln -sf /usr/bin/clang-15 /usr/bin/clang && \
ln -sf /usr/bin/clang++-15 /usr/bin/clang++
ln -sf /usr/bin/clang-17 /usr/bin/clang && \
ln -sf /usr/bin/clang++-17 /usr/bin/clang++
ARG CI_UID
RUN useradd -m -u ${CI_UID} ci && chown ${CI_UID}:${CI_UID} .
ARG CI_RUNNER
Expand Down