Skip to content

Commit

Permalink
Fix variable name in Java build script (#9161)
Browse files Browse the repository at this point in the history
Fixes an incorrect variable reference in java/ci/build-in-docker.sh for configuring whether C++ tests should be built.

Authors:
  - Jason Lowe (https://github.com/jlowe)

Approvers:
  - Robert (Bobby) Evans (https://github.com/revans2)

URL: #9161
  • Loading branch information
jlowe authored Sep 1, 2021
1 parent 1935a8a commit 55e1e40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/ci/build-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export LIBCUDF_KERNEL_CACHE_PATH=/rapids
rm -rf "$WORKSPACE/cpp/build"
mkdir -p "$WORKSPACE/cpp/build"
cd "$WORKSPACE/cpp/build"
cmake .. -DUSE_NVTX=$ENABLE_NVTX -DCUDF_USE_ARROW_STATIC=ON -DCUDF_ENABLE_ARROW_S3=OFF -DBUILD_TESTS=$SKIP_CPP_TESTS -DPER_THREAD_DEFAULT_STREAM=$ENABLE_PTDS -DRMM_LOGGING_LEVEL=$RMM_LOGGING_LEVEL
cmake .. -DUSE_NVTX=$ENABLE_NVTX -DCUDF_USE_ARROW_STATIC=ON -DCUDF_ENABLE_ARROW_S3=OFF -DBUILD_TESTS=$BUILD_CPP_TESTS -DPER_THREAD_DEFAULT_STREAM=$ENABLE_PTDS -DRMM_LOGGING_LEVEL=$RMM_LOGGING_LEVEL

make -j$PARALLEL_LEVEL
make install DESTDIR=$INSTALL_PREFIX
Expand Down

0 comments on commit 55e1e40

Please sign in to comment.