We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef09ed6 commit 80d8d0cCopy full SHA for 80d8d0c
ci/scripts/cpp_build.sh
@@ -282,13 +282,12 @@ else
282
${source_dir}
283
fi
284
285
+ARROW_BUILD_PARALLEL=${CMAKE_BUILD_PARALLEL_LEVEL:-${ARROW_BUILD_PARALLEL:-$[${n_jobs} + 1]}}
286
if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then
- time {
287
- meson compile -j $[${n_jobs} + 1];
288
- meson install;
289
- }
+ time meson compile -j ${ARROW_BUILD_PARALLEL}
+ meson install
290
else
291
- export CMAKE_BUILD_PARALLEL_LEVEL=${CMAKE_BUILD_PARALLEL_LEVEL:-$[${n_jobs} + 1]}
+ export CMAKE_BUILD_PARALLEL_LEVEL=${ARROW_BUILD_PARALLEL}
292
time cmake --build . --target install
293
294
0 commit comments