From 12d5ba4128dfbdfc93eac0b7cc588dd65416df49 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Thu, 10 Oct 2024 16:17:32 +0200 Subject: [PATCH] Revert "FIX: reduced build concurrency" This reverts commit 2748d37561ca7b89aba4f2fbe64792b7b8867ce3. --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 7f474a9..a793a9d 100644 --- a/Containerfile +++ b/Containerfile @@ -6,7 +6,7 @@ WORKDIR /src RUN git clone --recurse-submodules https://gitea.federationhq.de/byterazor/redmine-api-cpp.git -RUN cd redmine-api-cpp && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=RELEASE -DENABLE_TESTS=OFF && make -j 1 +RUN cd redmine-api-cpp && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=RELEASE -DENABLE_TESTS=OFF && make -j 4 FROM alpine:latest