Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,7 @@ jobs:
ARROW_BUILD_TYPE: release
ARROW_FLIGHT: ON
ARROW_FLIGHT_SQL: ON
# ARROW-17728: SEGV on MinGW
ARROW_GANDIVA: OFF
ARROW_GANDIVA: ON
ARROW_GCS: ON
ARROW_HDFS: OFF
ARROW_HOME: /ucrt${{ matrix.mingw-n-bits }}
Expand Down
7 changes: 3 additions & 4 deletions ci/scripts/cpp_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,7 @@ case "$(uname)" in
n_jobs=${NUMBER_OF_PROCESSORS:-1}
# TODO: Enable these crashed tests.
# https://issues.apache.org/jira/browse/ARROW-9072
exclude_tests="gandiva-internals-test"
exclude_tests="${exclude_tests}|gandiva-projector-test"
exclude_tests="${exclude_tests}|gandiva-utf8-test"
exclude_tests="${exclude_tests}|gandiva-binary-test"
exclude_tests="gandiva-binary-test"
exclude_tests="${exclude_tests}|gandiva-boolean-expr-test"
exclude_tests="${exclude_tests}|gandiva-date-time-test"
exclude_tests="${exclude_tests}|gandiva-decimal-single-test"
Expand All @@ -65,10 +62,12 @@ case "$(uname)" in
exclude_tests="${exclude_tests}|gandiva-hash-test"
exclude_tests="${exclude_tests}|gandiva-if-expr-test"
exclude_tests="${exclude_tests}|gandiva-in-expr-test"
exclude_tests="${exclude_tests}|gandiva-internals-test"
exclude_tests="${exclude_tests}|gandiva-literal-test"
exclude_tests="${exclude_tests}|gandiva-null-validity-test"
exclude_tests="${exclude_tests}|gandiva-precompiled-test"
exclude_tests="${exclude_tests}|gandiva-projector-test"
exclude_tests="${exclude_tests}|gandiva-utf8-test"
ctest_options+=(--exclude-regex "${exclude_tests}")
;;
*)
Expand Down
1 change: 1 addition & 0 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ set(ARROW_DOC_DIR "share/doc/${PROJECT_NAME}")
set(BUILD_SUPPORT_DIR "${CMAKE_SOURCE_DIR}/build-support")

set(ARROW_LLVM_VERSIONS
"16.0"
"15.0"
"14.0"
"13.0"
Expand Down