From 3791916a3210f5595235b1b35b96ac27ec1b4633 Mon Sep 17 00:00:00 2001 From: light7734 Date: Thu, 17 Jul 2025 12:03:17 +0330 Subject: [PATCH] ci: add ninja-build package to ci Dockersfiles --- tools/ci/images/unit_tests/Dockerfile | 5 ++++- tools/ci/images/valgrind/Dockerfile | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/tools/ci/images/unit_tests/Dockerfile b/tools/ci/images/unit_tests/Dockerfile index fc5a83c..57f109b 100644 --- a/tools/ci/images/unit_tests/Dockerfile +++ b/tools/ci/images/unit_tests/Dockerfile @@ -13,6 +13,7 @@ RUN apk add --no-cache \ mesa-dev \ mesa-gl \ pkgconf \ + ninja-build \ mold @@ -24,7 +25,9 @@ RUN clang --version \ && pip --version \ && cmake --version \ && g++ --version \ - && clang --version + && clang --version \ + && ninja --version \ + && mold --version RUN git clone 'https://git.light7734.com/light7734/light.git' --recursive \ && cd light \ diff --git a/tools/ci/images/valgrind/Dockerfile b/tools/ci/images/valgrind/Dockerfile index f564e25..a1c8589 100644 --- a/tools/ci/images/valgrind/Dockerfile +++ b/tools/ci/images/valgrind/Dockerfile @@ -13,6 +13,7 @@ RUN apk add --no-cache \ mesa-dev \ mesa-gl \ pkgconf \ + ninja-build \ mold \ valgrind @@ -24,7 +25,9 @@ RUN clang --version \ && pip --version \ && cmake --version \ && g++ --version \ - && clang --version + && clang --version \ + && ninja --version \ + && mold --version RUN git clone 'https://git.light7734.com/light7734/light.git' --recursive \ && cd light \