From 91c719ec925d6a8b11ca45d1be29a6a4ae405e5b Mon Sep 17 00:00:00 2001 From: Piotr Spieker Date: Tue, 29 Oct 2024 16:07:12 +0100 Subject: [PATCH] Build demo with more threads --- demo/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/Dockerfile b/demo/Dockerfile index 2ff5378e..a3e949cc 100644 --- a/demo/Dockerfile +++ b/demo/Dockerfile @@ -34,7 +34,7 @@ COPY --chown=blinky:blinky CMakeLists.txt /home/blinky/demo/CMakeLists.txt WORKDIR /home/blinky/demo/build RUN cmake -DCMAKE_BUILD_TYPE=Release .. && \ - cmake --build . + cmake --build . -j8 CMD [ "/home/blinky/demo/build/arbitration_graphs_pacman_demo_exe" ]