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 2021/12/05 06:12:34 UTC

[arrow] branch master updated: ARROW-14984: [CI][Debian] rsync is missing

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 93210d6  ARROW-14984: [CI][Debian] rsync is missing
93210d6 is described below

commit 93210d67be9aab8e5c68bcfc6ea68ffbd6bba8e5
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Sun Dec 5 15:09:29 2021 +0900

    ARROW-14984: [CI][Debian] rsync is missing
    
    A follow-up of #11567.
    
    https://github.com/ursacomputing/crossbow/runs/4415960154?check_suite_focus=true
    
        + mkdir -p /build/docs/c_glib
        + rsync -a /usr/local/share/gtk-doc/html/ /build/docs/c_glib
        /arrow/ci/scripts/c_glib_build.sh: line 52: rsync: command not found
        127
    
    Closes #11859 from kou/ci-debian-rsync
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 ci/docker/debian-10-cpp.dockerfile | 1 +
 ci/docker/debian-11-cpp.dockerfile | 1 +
 2 files changed, 2 insertions(+)

diff --git a/ci/docker/debian-10-cpp.dockerfile b/ci/docker/debian-10-cpp.dockerfile
index 7f28c3b..2bb9e88 100644
--- a/ci/docker/debian-10-cpp.dockerfile
+++ b/ci/docker/debian-10-cpp.dockerfile
@@ -66,6 +66,7 @@ RUN apt-get update -y -q && \
         protobuf-compiler \
         python3-pip \
         rapidjson-dev \
+        rsync \
         tzdata \
         zlib1g-dev && \
     apt-get clean && \
diff --git a/ci/docker/debian-11-cpp.dockerfile b/ci/docker/debian-11-cpp.dockerfile
index bbc1e1e..c2b0e98 100644
--- a/ci/docker/debian-11-cpp.dockerfile
+++ b/ci/docker/debian-11-cpp.dockerfile
@@ -65,6 +65,7 @@ RUN apt-get update -y -q && \
         protobuf-compiler-grpc \
         python3-pip \
         rapidjson-dev \
+        rsync \
         tzdata \
         zlib1g-dev && \
     apt-get clean && \