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
2
2
ARG CI_UID
3
3
RUN useradd -m -u ${CI_UID} ci
4
4
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 \
6
6
ninja-build
7
7
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++
14
14
RUN chown ${CI_UID}:${CI_UID} .
15
15
COPY --chown=${CI_UID}:${CI_UID} . .
16
16
CMD sh -x .buildbot.sh
You can’t perform that action at this time.
0 commit comments