You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by as...@apache.org on 2023/05/25 04:30:57 UTC

[arrow] branch main updated: GH-35754: [CI][GLib] Don't build static C++ libraries (#35755)

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

assignuser 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 6d2df074e6 GH-35754: [CI][GLib] Don't build static C++ libraries (#35755)
6d2df074e6 is described below

commit 6d2df074e624a6a4462a1539be8dadf19cf39df4
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Thu May 25 13:30:48 2023 +0900

    GH-35754: [CI][GLib] Don't build static C++ libraries (#35755)
    
    ### Rationale for this change
    
    GLib doesn't use static C++ libraries.
    
    ### What changes are included in this PR?
    
    Disable building static C++ libraries.
    
    ### Are these changes tested?
    
    Yes.
    
    ### Are there any user-facing changes?
    
    No.
    * Closes: #35754
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Jacob Wujciak-Jens <ja...@wujciak.de>
---
 ci/docker/linux-apt-c-glib.dockerfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ci/docker/linux-apt-c-glib.dockerfile b/ci/docker/linux-apt-c-glib.dockerfile
index dfa1b190c9..dd2e2ac438 100644
--- a/ci/docker/linux-apt-c-glib.dockerfile
+++ b/ci/docker/linux-apt-c-glib.dockerfile
@@ -58,6 +58,7 @@ RUN (python3 -m pip install meson || \
 COPY c_glib/Gemfile /arrow/c_glib/
 RUN bundle install --gemfile /arrow/c_glib/Gemfile
 
-ENV ARROW_BUILD_TESTS=OFF \
+ENV ARROW_BUILD_STATIC=OFF \
+    ARROW_BUILD_TESTS=OFF \
     ARROW_BUILD_UTILITIES=OFF \
     ARROW_INSTALL_NAME_RPATH=OFF