ci: add static_analysis #2

Merged
light7734 merged 16 commits from ci/static_analysis into main 2025-07-14 08:45:10 +00:00
2 changed files with 6 additions and 3 deletions
Showing only changes of commit 7ff3b41c04 - Show all commits

View file

@ -6,5 +6,4 @@ RUN apk add --no-cache \
findutils \ findutils \
git \ git \
libc6-compat \ libc6-compat \
tar \
clang-extra-tools clang-extra-tools

View file

@ -12,7 +12,8 @@ RUN apk add --no-cache \
py3-pip \ py3-pip \
mesa-dev \ mesa-dev \
mesa-gl \ mesa-gl \
pkgconf pkgconf \
clang-extra-tools
RUN pip install --no-cache-dir --break-system-packages conan gitpython \ RUN pip install --no-cache-dir --break-system-packages conan gitpython \
@ -21,7 +22,10 @@ RUN pip install --no-cache-dir --break-system-packages conan gitpython \
RUN clang --version \ RUN clang --version \
&& conan --version \ && conan --version \
&& pip --version \ && pip --version \
&& cmake --version && cmake --version \
&& clang --version \
&& clang-tidy --version
RUN git clone 'https://git.light7734.com/light7734/light.git' --recursive \ RUN git clone 'https://git.light7734.com/light7734/light.git' --recursive \
&& cd light \ && cd light \