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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9a4697783d ARROW-17194: [CI][Conan] Enable glog (#13697)
9a4697783d is described below

commit 9a4697783d44f1ace99bbf209559cef685729c5c
Author: Sutou Kouhei <[email protected]>
AuthorDate: Tue Jul 26 05:11:26 2022 +0900

    ARROW-17194: [CI][Conan] Enable glog (#13697)
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 ci/scripts/conan_build.sh | 3 +++
 dev/tasks/tasks.yml       | 1 +
 2 files changed, 4 insertions(+)

diff --git a/ci/scripts/conan_build.sh b/ci/scripts/conan_build.sh
index 11952509c8..808e45e11f 100755
--- a/ci/scripts/conan_build.sh
+++ b/ci/scripts/conan_build.sh
@@ -34,6 +34,9 @@ fi
 if [ -n "${ARROW_CONAN_WITH_BROTLI:-}" ]; then
   conan_args+=(--options arrow:with_brotli=${ARROW_CONAN_WITH_BROTLI})
 fi
+if [ -n "${ARROW_CONAN_WITH_GLOG:-}" ]; then
+  conan_args+=(--options arrow:with_glog=${ARROW_CONAN_WITH_GLOG})
+fi
 if [ -n "${ARROW_CONAN_WITH_JEMALLOC:-}" ]; then
   conan_args+=(--options arrow:with_jemalloc=${ARROW_CONAN_WITH_JEMALLOC})
 fi
diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml
index 71a60d2452..8e6d75ae34 100644
--- a/dev/tasks/tasks.yml
+++ b/dev/tasks/tasks.yml
@@ -207,6 +207,7 @@ tasks:
       flags: >-
         -e ARROW_CONAN_PARQUET=True
         -e ARROW_CONAN_WITH_BROTLI=True
+        -e ARROW_CONAN_WITH_GLOG=True
         -e ARROW_CONAN_WITH_JEMALLOC=True
         -e ARROW_CONAN_WITH_LZ4=True
         -e ARROW_CONAN_WITH_SNAPPY=True

Reply via email to