File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1- FROM debian:bullseye
1+ FROM debian:bookworm
22ARG CI_UID
33RUN useradd -m -u ${CI_UID} ci
44RUN 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
77WORKDIR /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++
1414RUN chown ${CI_UID}:${CI_UID} .
1515COPY --chown=${CI_UID}:${CI_UID} . .
1616CMD sh -x .buildbot.sh
You can’t perform that action at this time.
0 commit comments