You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2020/05/14 20:26:51 UTC

[arrow] branch master updated: ARROW-8790: [C++][CI] Enable arrow-flight-test on s390x

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 5f9d13b  ARROW-8790: [C++][CI] Enable arrow-flight-test on s390x
5f9d13b is described below

commit 5f9d13bc34c66e07cbfae2e17ef8e050fc9e14f8
Author: Kazuaki Ishizaki <is...@jp.ibm.com>
AuthorDate: Fri May 15 05:26:04 2020 +0900

    ARROW-8790: [C++][CI] Enable arrow-flight-test on s390x
    
    This PR enables build & test of arrow-flight on TravisCI s390x.
    
    This PR uses three BUNDLED packages to build Arrow on s390x.
    
    Closes #7171 from kiszk/ARROW-8790
    
    Authored-by: Kazuaki Ishizaki <is...@jp.ibm.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 .travis.yml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 2570b1a..2c65efb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -47,13 +47,16 @@ jobs:
       env:
         ARCH: s390x
         ARROW_CI_MODULES: "CPP"
-        ARROW_FLIGHT: "OFF"
+        ARROW_FLIGHT: "ON"
         ARROW_GANDIVA: "OFF"
         ARROW_PARQUET: "OFF"
+        DOCKER_IMAGE_ID: ubuntu-cpp
         PARQUET_BUILD_EXAMPLES: "OFF"
         PARQUET_BUILD_EXECUTABLES: "OFF"
-        DOCKER_IMAGE_ID: ubuntu-cpp
+        Protobuf_SOURCE: "BUNDLED"
         UBUNTU: "20.04"
+        cares_SOURCE: "BUNDLED"
+        gRPC_SOURCE: "BUNDLED"
   allow_failures:
     - arch: s390x
 
@@ -92,6 +95,9 @@ script:
       -e ARROW_PARQUET=${ARROW_PARQUET:-ON} \
       -e PARQUET_BUILD_EXAMPLES=${PARQUET_BUILD_EXAMPLES:-ON} \
       -e PARQUET_BUILD_EXECUTABLES=${PARQUET_BUILD_EXECUTABLES:-ON} \
+      -e Protobuf_SOURCE=${Protobuf_SOURCE:-} \
+      -e cares_SOURCE=${cares_SOURCE:-} \
+      -e gRPC_SOURCE=${gRPC_SOURCE:-} \
       --volume ${PWD}/build:/build \
       ${DOCKER_IMAGE_ID}