You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/02/21 02:27:18 UTC

[kyuubi] branch branch-1.7 updated: [KYUUBI #4374] Release uploading should include kyuubi-spark-connector-hive

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

chengpan pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new 9e7131bff [KYUUBI #4374] Release uploading should include kyuubi-spark-connector-hive
9e7131bff is described below

commit 9e7131bff3a90002a17abb939e157b199d033ecf
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Tue Feb 21 10:26:47 2023 +0800

    [KYUUBI #4374] Release uploading should include kyuubi-spark-connector-hive
    
    ### _Why are the changes needed?_
    
    The module is missed because it's only included when `spark-3.3` is activated.
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #4374 from pan3793/release.
    
    Closes #4374
    
    ffc0dc22 [Cheng Pan] fix
    d21738f1 [Cheng Pan] Release uploading should include kyuubi-spark-connector-hive
    
    Authored-by: Cheng Pan <ch...@apache.org>
    Signed-off-by: Cheng Pan <ch...@apache.org>
    (cherry picked from commit 81f16dfb17d9e30bc86f137e2d2c0c9dce7ef8d1)
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 build/release/release.sh | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/build/release/release.sh b/build/release/release.sh
index 504bcfaf1..fefcce6a9 100755
--- a/build/release/release.sh
+++ b/build/release/release.sh
@@ -94,8 +94,6 @@ upload_svn_staging() {
 }
 
 upload_nexus_staging() {
-  ${KYUUBI_DIR}/build/mvn clean deploy -DskipTests -Papache-release,flink-provided,spark-provided,hive-provided \
-    -s "${KYUUBI_DIR}/build/release/asf-settings.xml"
   ${KYUUBI_DIR}/build/mvn clean deploy -DskipTests -Papache-release,flink-provided,spark-provided,hive-provided,spark-3.1 \
     -s "${KYUUBI_DIR}/build/release/asf-settings.xml" \
     -pl extensions/spark/kyuubi-extension-spark-3-1 -am
@@ -103,8 +101,7 @@ upload_nexus_staging() {
     -s "${KYUUBI_DIR}/build/release/asf-settings.xml" \
     -pl extensions/spark/kyuubi-extension-spark-3-2 -am
   ${KYUUBI_DIR}/build/mvn clean deploy -DskipTests -Papache-release,flink-provided,spark-provided,hive-provided,spark-3.3 \
-    -s "${KYUUBI_DIR}/build/release/asf-settings.xml" \
-    -pl extensions/spark/kyuubi-extension-spark-3-3 -am
+    -s "${KYUUBI_DIR}/build/release/asf-settings.xml"
 }
 
 finalize_svn() {