Skip to content

Commit ef09ed6

Browse files
committed
GH-46338: [C++] Add compile step for Meson in cpp_build.sh
1 parent 068416b commit ef09ed6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/scripts/cpp_build.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,10 @@ else
283283
fi
284284

285285
if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then
286-
time meson install
286+
time {
287+
meson compile -j $[${n_jobs} + 1];
288+
meson install;
289+
}
287290
else
288291
export CMAKE_BUILD_PARALLEL_LEVEL=${CMAKE_BUILD_PARALLEL_LEVEL:-$[${n_jobs} + 1]}
289292
time cmake --build . --target install

0 commit comments

Comments
 (0)