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 \
git \
libc6-compat \
tar \
clang-extra-tools

View file

@ -12,7 +12,8 @@ RUN apk add --no-cache \
py3-pip \
mesa-dev \
mesa-gl \
pkgconf
pkgconf \
clang-extra-tools
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 \
&& conan --version \
&& pip --version \
&& cmake --version
&& cmake --version \
&& clang --version \
&& clang-tidy --version
RUN git clone 'https://git.light7734.com/light7734/light.git' --recursive \
&& cd light \