From 7ff3b41c04236046b96b14eb971654129d7b37ce Mon Sep 17 00:00:00 2001 From: light7734 Date: Fri, 11 Jul 2025 16:10:50 +0330 Subject: [PATCH] ci: fix Dockerfile apk dependencies --- tools/ci/images/clang_format/Dockerfile | 1 - tools/ci/images/static_analysis/Dockerfile | 8 ++++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/tools/ci/images/clang_format/Dockerfile b/tools/ci/images/clang_format/Dockerfile index 233048c..91c8cb7 100644 --- a/tools/ci/images/clang_format/Dockerfile +++ b/tools/ci/images/clang_format/Dockerfile @@ -6,5 +6,4 @@ RUN apk add --no-cache \ findutils \ git \ libc6-compat \ - tar \ clang-extra-tools diff --git a/tools/ci/images/static_analysis/Dockerfile b/tools/ci/images/static_analysis/Dockerfile index 37d1e46..a8a7afd 100644 --- a/tools/ci/images/static_analysis/Dockerfile +++ b/tools/ci/images/static_analysis/Dockerfile @@ -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 \