From dd07d67155284bc0c35043ffb72214cb93a5ef89 Mon Sep 17 00:00:00 2001 From: Constantine Molchanov Date: Wed, 10 Jun 2026 18:44:33 +0400 Subject: [PATCH] Tests: Dockerfile: Replace manual libplum building with nimble task. --- tests/Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/Dockerfile b/tests/Dockerfile index 45c4fac..ed2518a 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -39,13 +39,7 @@ COPY vendor/ vendor/ RUN nimble setup -y # Build libplum static library -RUN rm -rf vendor/libplum/build && \ - cmake -B vendor/libplum/build \ - -DCMAKE_BUILD_TYPE=Release \ - -DBUILD_SHARED_LIBS=OFF \ - vendor/libplum && \ - cmake --build vendor/libplum/build && \ - cp vendor/libplum/build/libplum.a vendor/libplum/libplum.a +RUN nimble buildBundledLibs # Compile test binaries (protocol x memory manager) COPY tests/ tests/