This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new de5a68189 [KYUUBI #5483] Fix deploy command for Scala 2.13 TPC-DS/H
connectors
de5a68189 is described below
commit de5a68189be7ca2d432b64facb1c18e092700ed5
Author: Cheng Pan <[email protected]>
AuthorDate: Fri Oct 27 10:07:38 2023 +0800
[KYUUBI #5483] Fix deploy command for Scala 2.13 TPC-DS/H connectors
### _Why are the changes needed?_
As title, it fixes the command issue identified during the preparation of
1.8.0-rc0.
### _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/contributing/code/testing.html#running-tests)
locally before make a pull request
### _Was this patch authored or co-authored using generative AI tooling?_
No.
Closes #5536 from pan3793/5483-followup.
Closes #5483
b508b201b [Cheng Pan] [KYUUBI #5483] Fix deploy command for Scala 2.13
TPC-DS/H connectors
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
build/release/release.sh | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/build/release/release.sh b/build/release/release.sh
index 047513dc5..576cee266 100755
--- a/build/release/release.sh
+++ b/build/release/release.sh
@@ -124,12 +124,12 @@ upload_nexus_staging() {
-s "${KYUUBI_DIR}/build/release/asf-settings.xml" \
-pl extensions/spark/kyuubi-extension-spark-3-3 -am
- # Spark TPC-DS/TPC-H Connector build with default Spark version (3.4) and
Scala 2.13
- ${KYUUBI_DIR}/build/mvn clean deploy -DskipTests
-Papache-release,flink-provided,spark-provided,hive-provided,spark-3.4 \
+ # Spark TPC-DS/TPC-H Connector built with default Spark version (3.4) and
Scala 2.13
+ ${KYUUBI_DIR}/build/mvn clean deploy -DskipTests
-Papache-release,flink-provided,spark-provided,hive-provided,spark-3.4,scala-2.13
\
-s "${KYUUBI_DIR}/build/release/asf-settings.xml" \
- -pl
extensions/spark/kyuubi-connector-tpcds,extensions/spark/kyuubi-connector-tpch
+ -pl
extensions/spark/kyuubi-spark-connector-tpcds,extensions/spark/kyuubi-spark-connector-tpch
-am
- # All modules including Spark Extension Plugin and Connectors build with
default Spark version (3.4) and default Scala version (2.12)
+ # All modules including Spark Extension Plugin and Connectors built with
default Spark version (3.4) and default Scala version (2.12)
${KYUUBI_DIR}/build/mvn clean deploy -DskipTests
-Papache-release,flink-provided,spark-provided,hive-provided,spark-3.4 \
-s "${KYUUBI_DIR}/build/release/asf-settings.xml"
}