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 \