Skip to content

Commit f083c0c

Browse files
committed
Try LD_LIBRARY_PATH hack
1 parent dc5081c commit f083c0c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ci/scripts/cpp_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ binary_output_dir=${build_dir}/${ARROW_BUILD_TYPE:-debug}
3131

3232
export ARROW_TEST_DATA=${arrow_dir}/testing/data
3333
export PARQUET_TEST_DATA=${source_dir}/submodules/parquet-testing/data
34-
export LD_LIBRARY_PATH=${ARROW_HOME}/${CMAKE_INSTALL_LIBDIR:-lib}:${LD_LIBRARY_PATH}
34+
export LD_LIBRARY_PATH=${ARROW_HOME}/${CMAKE_INSTALL_LIBDIR:-lib}:${CUDA_PATH}/lib/stubs:${LD_LIBRARY_PATH}
3535

3636
# By default, aws-sdk tries to contact a non-existing local ip host
3737
# to retrieve metadata. Disable this so that S3FileSystem tests run faster.

cpp/meson.build

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ needs_acero = get_option('acero').enabled()
6565
needs_cuda = get_option('cuda').enabled()
6666
needs_flight = get_option('flight').enabled()
6767
needs_ipc = (get_option('ipc').enabled()
68-
or needs_tests
69-
or needs_acero
70-
or needs_benchmarks
71-
or needs_cuda
72-
or needs_flight
68+
or needs_tests
69+
or needs_acero
70+
or needs_benchmarks
71+
or needs_cuda
72+
or needs_flight
7373
)
7474
needs_fuzzing = get_option('fuzzing').enabled()
7575
needs_testing = (get_option('testing').enabled()

0 commit comments

Comments
 (0)