From: Bastian Dehn Date: Wed, 24 Dec 2025 13:35:34 +0000 (+0100) Subject: fix run tests in container X-Git-Tag: 1.3.9^2~4 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=d3b5c5c78ff748163c80d035b13ffbac244f1ce0;p=feierabend.git fix run tests in container --- diff --git a/builder/Containerfile-forky b/builder/Containerfile-forky index 80958bc..a0fea95 100644 --- a/builder/Containerfile-forky +++ b/builder/Containerfile-forky @@ -3,7 +3,7 @@ RUN apt-get update \ && apt-get install -y build-essential cmake file \ && apt-get clean RUN apt-get update \ -&& apt-get install -y libxml2-dev \ +&& apt-get install -y libxml2-dev libcmocka-dev cppcheck \ && apt-get clean COPY run /app/run RUN chmod 755 /app/run diff --git a/builder/Containerfile-trixie b/builder/Containerfile-trixie index fa7a5e4..43c7b43 100644 --- a/builder/Containerfile-trixie +++ b/builder/Containerfile-trixie @@ -3,7 +3,7 @@ RUN apt-get update \ && apt-get install -y build-essential cmake file \ && apt-get clean RUN apt-get update \ -&& apt-get install -y libxml2-dev \ +&& apt-get install -y libxml2-dev libcmocka-dev cppcheck \ && apt-get clean COPY run /app/run RUN chmod 755 /app/run diff --git a/builder/run b/builder/run index e5bc70d..32bde5a 100644 --- a/builder/run +++ b/builder/run @@ -3,7 +3,7 @@ run_tests() { mkdir -p /build-tests && cd /build-tests - cmake -DCMAKE_BUILD_TYPE=DEBUG /src + cmake -DCMAKE_BUILD_TYPE=Debug /src make -j$(nproc) }