Skip to content

Commit 91b2c9f

Browse files
bors[bot]vext01
andauthored
76: Update CI to Debian bookworm. r=ptersilie a=vext01 Co-authored-by: Edd Barrett <[email protected]>
2 parents 8dc7a41 + 4a5711f commit 91b2c9f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.buildbot_dockerfile_debian

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
FROM debian:bullseye
1+
FROM debian:bookworm
22
ARG CI_UID
33
RUN useradd -m -u ${CI_UID} ci
44
RUN apt-get update && \
5-
apt-get -y install clang-13 make curl cmake python3-distutils git \
5+
apt-get -y install clang-15 make curl cmake python3-distutils git \
66
ninja-build
77
WORKDIR /ci
8-
RUN update-alternatives --install /usr/bin/cc cc /usr/bin/clang-13 999
9-
RUN update-alternatives --set cc /usr/bin/clang-13
10-
RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-13 999
11-
RUN update-alternatives --set c++ /usr/bin/clang++-13
12-
RUN ln -sf /usr/bin/clang-13 /usr/bin/clang
13-
RUN ln -sf /usr/bin/clang++-13 /usr/bin/clang++
8+
RUN update-alternatives --install /usr/bin/cc cc /usr/bin/clang-15 999
9+
RUN update-alternatives --set cc /usr/bin/clang-15
10+
RUN update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-15 999
11+
RUN update-alternatives --set c++ /usr/bin/clang++-15
12+
RUN ln -sf /usr/bin/clang-15 /usr/bin/clang
13+
RUN ln -sf /usr/bin/clang++-15 /usr/bin/clang++
1414
RUN chown ${CI_UID}:${CI_UID} .
1515
COPY --chown=${CI_UID}:${CI_UID} . .
1616
CMD sh -x .buildbot.sh

0 commit comments

Comments
 (0)