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 2019/06/30 07:23:41 UTC

[arrow] branch master updated: ARROW-5795: [Release] Add missing waits on uploading binaries

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 f0392dc  ARROW-5795: [Release] Add missing waits on uploading binaries
f0392dc is described below

commit f0392dcf5d77ae499a66581edb3c0db3a07fd5a3
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Sun Jun 30 16:23:30 2019 +0900

    ARROW-5795: [Release] Add missing waits on uploading binaries
    
    Author: Sutou Kouhei <ko...@clear-code.com>
    
    Closes #4755 from kou/release-add-missing-wait and squashes the following commits:
    
    081c1aa10 <Sutou Kouhei>  Add missing waits on uploading binaries
---
 dev/release/03-binary.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev/release/03-binary.sh b/dev/release/03-binary.sh
index f3f418c..92cfaaf 100755
--- a/dev/release/03-binary.sh
+++ b/dev/release/03-binary.sh
@@ -317,6 +317,7 @@ upload_deb() {
   for base_path in *; do
     upload_deb_file ${version} ${rc} ${distribution} ${code_name} ${base_path} &
   done
+  wait
 }
 
 upload_apt() {
@@ -447,6 +448,7 @@ upload_rpm() {
       ${distribution_version} \
       ${rpm_path} &
   done
+  wait
 }
 
 upload_yum() {
@@ -516,6 +518,7 @@ upload_python() {
       ${base_path} \
       ${version}-rc${rc}/${base_path} &
   done
+  wait
 }
 
 docker build -t ${docker_image_name} ${SOURCE_DIR}/binary