Skip to content

Commit 02bdb64

Browse files
committed
Debug issue
1 parent f083c0c commit 02bdb64

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

ci/scripts/cpp_build.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,8 @@ if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then
146146
--prefix=${MESON_PREFIX:-${ARROW_HOME}} \
147147
--buildtype=${ARROW_BUILD_TYPE:-debug} \
148148
--pkg-config-path="${CONDA_PREFIX}/lib/pkgconfig/" \
149-
-Dauto_features=enabled \
150-
-Dfuzzing=disabled \
151-
-Dgcs=disabled \
152-
-Ds3=disabled \
149+
-Dcuda=enabled \
150+
-Dtests=enabled \
153151
. \
154152
${source_dir}
155153

@@ -288,7 +286,7 @@ fi
288286

289287
: ${ARROW_BUILD_PARALLEL:=$[${n_jobs} + 1]}
290288
if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then
291-
time meson compile -j ${ARROW_BUILD_PARALLEL}
289+
time meson compile -j ${ARROW_BUILD_PARALLEL} --verbose
292290
meson install
293291
# Remove all added files in cpp/subprojects/ because they may have
294292
# unreadable permissions on Docker host.

ci/scripts/cpp_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ if [ -z "${PYTHON}" ] && ! which python > /dev/null 2>&1; then
9191
fi
9292
if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then
9393
ARROW_BUILD_EXAMPLES=OFF # TODO: Remove this
94-
meson test \
94+
meson test arrow-cuda-test --verbose \
9595
--no-rebuild \
9696
--print-errorlogs \
9797
--suite arrow \

0 commit comments

Comments
 (0)