You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2022/04/27 13:50:45 UTC

[arrow] branch master updated: ARROW-16332: [Release][Java] Add artifacts uploaded verification

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

kszucs 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 8b6c53848b ARROW-16332: [Release][Java] Add artifacts uploaded verification
8b6c53848b is described below

commit 8b6c53848be5c7b59c678d0d455d4555b178efaf
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Wed Apr 27 15:50:36 2022 +0200

    ARROW-16332: [Release][Java] Add artifacts uploaded verification
    
    We should replace this with real verification such as running tests
    against the built .jars later.
    
    See also: ARROW-15486
    
    Closes #13003 from kou/release-java-jars-verify-uploaded
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Krisztián Szűcs <sz...@gmail.com>
---
 dev/release/verify-release-candidate.sh | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index aa6bc94fcf..08c0689aee 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -1086,6 +1086,14 @@ test_jars() {
          --package_type=jars
 
   verify_dir_artifact_signatures ${download_dir}
+
+  # TODO: This should be replaced with real verification by ARROW-15486.
+  # https://issues.apache.org/jira/browse/ARROW-15486
+  # [Release][Java] Verify staged maven artifacts
+  if [ ! -d "${download_dir}/arrow-memory/${VERSION}" ]; then
+    echo "Artifacts for ${VERSION} isn't uploaded yet."
+    return 1
+  fi
 }
 
 # By default test all functionalities.