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.
This commit is contained in:
Gioacchino Mazzurco 2022-02-25 18:26:42 +01:00
parent 52aba1be18
commit fcaba0e65f
No known key found for this signature in database
GPG Key ID: A1FBCA3872E87051

View File

@ -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