From a7675c2cc24c99827ce8c4327f79c9247d38b506 Mon Sep 17 00:00:00 2001 From: Laurence Tratt Date: Fri, 26 Sep 2025 10:37:24 +0100 Subject: [PATCH] Use Bookworm for CI. At least for now, it seems that newer Debians (and the compilers they ship) find warnings that we don't want to deal with. --- .buildbot_dockerfile_debian | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .buildbot_dockerfile_debian diff --git a/.buildbot_dockerfile_debian b/.buildbot_dockerfile_debian new file mode 100644 index 00000000000000..ea9aaf710d5725 --- /dev/null +++ b/.buildbot_dockerfile_debian @@ -0,0 +1,9 @@ +FROM debian:bookworm +ARG CI_UID +RUN useradd -m -u ${CI_UID} ci +RUN apt-get update && \ + apt-get -y install build-essential curl procps file +WORKDIR /ci +RUN chown ${CI_UID}:${CI_UID} . +COPY --chown=${CI_UID}:${CI_UID} . . +CMD sh -x .buildbot.sh