Unverified Commit b75ccfc5 authored by Daniel Hiltgen's avatar Daniel Hiltgen Committed by GitHub
Browse files

ci: be more aggressive on parallelism in build (#8102)

parent 7a81daf0
......@@ -69,7 +69,7 @@ ARG OLLAMA_FAST_BUILD
ARG VERSION
RUN --mount=type=cache,target=/root/.ccache \
if grep "^flags" /proc/cpuinfo|grep avx>/dev/null; then \
make -j $(expr $(nproc) / 2 ) dist ; \
make -j $(nproc) dist ; \
else \
make -j 5 dist ; \
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment