Skip to content

Commit 16a0739

Browse files
committed
ARROW-12514: [Release] Don't run Gandiva related Ruby test with ARROW_GANDIVA=OFF
Closes #10135 from kou/release-verify-ruby-gandiva Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent 69870b9 commit 16a0739

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

dev/release/verify-release-candidate.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,10 +433,13 @@ test_js() {
433433
test_ruby() {
434434
pushd ruby
435435

436-
local modules="red-arrow red-plasma red-gandiva red-parquet"
436+
local modules="red-arrow red-plasma red-parquet"
437437
if [ "${ARROW_CUDA}" = "ON" ]; then
438438
modules="${modules} red-arrow-cuda"
439439
fi
440+
if [ "${ARROW_GANDIVA}" = "ON" ]; then
441+
modules="${modules} red-gandiva"
442+
fi
440443

441444
for module in ${modules}; do
442445
pushd ${module}

0 commit comments

Comments
 (0)