From 14005e7bcf756b69f97a745e4d04416e27054627 Mon Sep 17 00:00:00 2001 From: Edd Barrett Date: Fri, 19 Sep 2025 09:23:54 +0100 Subject: [PATCH] Bump clang version in docker for new debian. --- .buildbot_dockerfile_debian | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.buildbot_dockerfile_debian b/.buildbot_dockerfile_debian index 1a6462f..7505a74 100644 --- a/.buildbot_dockerfile_debian +++ b/.buildbot_dockerfile_debian @@ -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