This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 8245b214ae GH-36610: [CI][C++] Don't enable ARROW_ACERO by default 
(#36611)
8245b214ae is described below

commit 8245b214ae63fe5e33fab69d7d4223850c9ce37b
Author: Sutou Kouhei <[email protected]>
AuthorDate: Fri Jul 14 09:44:38 2023 +0900

    GH-36610: [CI][C++] Don't enable ARROW_ACERO by default (#36611)
    
    ### Rationale for this change
    
    Because it's not a required component.
    
    ### What changes are included in this PR?
    
    Use `OFF` by default.
    
    ### Are these changes tested?
    
    Yes.
    
    ### Are there any user-facing changes?
    
    No.
    * Closes: #36610
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 ci/scripts/cpp_build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/scripts/cpp_build.sh b/ci/scripts/cpp_build.sh
index fd682d0e2a..f0f893c419 100755
--- a/ci/scripts/cpp_build.sh
+++ b/ci/scripts/cpp_build.sh
@@ -83,7 +83,7 @@ pushd ${build_dir}
 
 cmake \
   -Dabsl_SOURCE=${absl_SOURCE:-} \
-  -DARROW_ACERO=${ARROW_ACERO:-ON} \
+  -DARROW_ACERO=${ARROW_ACERO:-OFF} \
   -DARROW_AZURE=${ARROW_AZURE:-OFF} \
   -DARROW_BOOST_USE_SHARED=${ARROW_BOOST_USE_SHARED:-ON} \
   -DARROW_BUILD_BENCHMARKS_REFERENCE=${ARROW_BUILD_BENCHMARKS:-OFF} \

Reply via email to