diff --git a/tools/ci/static_analysis/clang_format.dockerfile b/tools/ci/static_analysis/clang_format.dockerfile deleted file mode 100644 index 91c8cb7..0000000 --- a/tools/ci/static_analysis/clang_format.dockerfile +++ /dev/null @@ -1,9 +0,0 @@ -FROM alpine:latest - -RUN apk add --no-cache \ - bash \ - curl \ - findutils \ - git \ - libc6-compat \ - clang-extra-tools diff --git a/tools/ci/static_analysis/clang_tidy.dockerfile b/tools/ci/static_analysis/clang_tidy.dockerfile deleted file mode 100644 index 64eea9b..0000000 --- a/tools/ci/static_analysis/clang_tidy.dockerfile +++ /dev/null @@ -1,42 +0,0 @@ -FROM alpine:latest - -RUN apk add --no-cache \ - bash \ - clang \ - llvm \ - cmake \ - git \ - make \ - g++ \ - python3 \ - py3-pip \ - mesa-dev \ - mesa-gl \ - pkgconf \ - clang-extra-tools \ - mold \ - ninja - -RUN pip install --no-cache-dir --break-system-packages conan gitpython \ - && conan profile detect - -RUN clang --version \ - && conan --version \ - && pip --version \ - && cmake --version \ - && g++ --version \ - && clang --version \ - && clang-tidy --version \ - && ninja --version \ - && mold --version - - -RUN git clone 'https://git.light7734.com/light7734/light.git' \ - && cd light \ - && conan install . \ - -c tools.system.package_manager:mode=install \ - -c tools.cmake.cmaketoolchain:generator=Ninja \ - -s build_type=Release \ - -o enable_static_analysis=True \ - -o use_mold=True \ - --build=missing