From fcaba0e65f7db58a44f1bc78b1d26e25a5ce5c1d Mon Sep 17 00:00:00 2001 From: Gioacchino Mazzurco Date: Fri, 25 Feb 2022 18:26:42 +0100 Subject: [PATCH] Quieter CMake option for GitlabCI Avoid GtilabCI suppressing log with: Job's log exceeded limit of 4194304 bytes. Job execution will continue but no more output will be collected. --- build_scripts/GitlabCI/gitlabCI.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_scripts/GitlabCI/gitlabCI.Dockerfile b/build_scripts/GitlabCI/gitlabCI.Dockerfile index 65361ff79..c62c4d198 100644 --- a/build_scripts/GitlabCI/gitlabCI.Dockerfile +++ b/build_scripts/GitlabCI/gitlabCI.Dockerfile @@ -14,6 +14,7 @@ RUN \ RUN \ mkdir RetroShare-build && cd RetroShare-build && \ cmake -B. -S../RetroShare/retroshare-service \ - -DRS_FORUM_DEEP_INDEX=ON -DRS_JSON_API=ON && \ + -DRS_FORUM_DEEP_INDEX=ON -DRS_JSON_API=ON \ + -DRS_WARN_DEPRECATED=OFF -DRS_WARN_LESS=ON && \ make -j$(nproc) && make install && \ cd .. && rm -rf RetroShare-build