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 febd0ff144 GH-35426: [CI][Packaging][Conan] Build grpc (#35427)
febd0ff144 is described below

commit febd0ff144cfb8b2baffb1cb0be57ca40dc7cc77
Author: Sutou Kouhei <[email protected]>
AuthorDate: Thu May 4 16:39:57 2023 +0900

    GH-35426: [CI][Packaging][Conan] Build grpc (#35427)
    
    ### Rationale for this change
    
    We can't use a prebuilt package for grpc.
    
    ### What changes are included in this PR?
    
    Built grpc by ourselves.
    
    ### Are these changes tested?
    
    Yes.
    
    ### Are there any user-facing changes?
    
    No.
    * Closes: #35426
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 ci/scripts/conan_build.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ci/scripts/conan_build.sh b/ci/scripts/conan_build.sh
index 290ce66162..2ad5b28934 100755
--- a/ci/scripts/conan_build.sh
+++ b/ci/scripts/conan_build.sh
@@ -29,6 +29,7 @@ export CONAN_HOOK_ERROR_LEVEL=40
 
 conan_args=()
 conan_args+=(--build=arrow)
+conan_args+=(--build=grpc) # We want to remove this if possible
 conan_args+=(--build=grpc-proto) # We want to remove this if possible
 if [ -n "${ARROW_CONAN_PARQUET:-}" ]; then
   conan_args+=(--options arrow:parquet=${ARROW_CONAN_PARQUET})

Reply via email to