This is an automated email from the ASF dual-hosted git repository. codope pushed a commit to branch release-0.12.0 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 46200a14114c1ca22d438ba897a456c75945068d Author: Sagar Sumit <[email protected]> AuthorDate: Wed Aug 3 00:52:01 2022 +0530 [HUDI-4512][HUDI-4513] Fix bundle name for spark3 profile (#6261) --- pom.xml | 2 +- scripts/release/deploy_staging_jars.sh | 1 + scripts/release/validate_staged_bundles.sh | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 86c6115f89..4a93c37977 100644 --- a/pom.xml +++ b/pom.xml @@ -1685,7 +1685,7 @@ <properties> <spark3.version>3.3.0</spark3.version> <spark.version>${spark3.version}</spark.version> - <sparkbundle.version>3.3</sparkbundle.version> + <sparkbundle.version>3</sparkbundle.version> <scala.version>${scala12.version}</scala.version> <scala.binary.version>2.12</scala.binary.version> <hudi.spark.module>hudi-spark3.3.x</hudi.spark.module> diff --git a/scripts/release/deploy_staging_jars.sh b/scripts/release/deploy_staging_jars.sh index fa71faae80..df4ac84efa 100755 --- a/scripts/release/deploy_staging_jars.sh +++ b/scripts/release/deploy_staging_jars.sh @@ -43,6 +43,7 @@ declare -a ALL_VERSION_OPTS=( "-Dscala-2.11 -Dspark2.4 -Dflink1.13" "-Dscala-2.11 -Dspark2.4 -Dflink1.14" "-Dscala-2.12 -Dspark2.4 -Dflink1.13" +"-Dscala-2.12 -Dspark3.3 -Dflink1.14" "-Dscala-2.12 -Dspark3.2 -Dflink1.14" "-Dscala-2.12 -Dspark3.1 -Dflink1.14" # run this last to make sure utilities bundle has spark 3.1 ) diff --git a/scripts/release/validate_staged_bundles.sh b/scripts/release/validate_staged_bundles.sh index b210f39fbf..db99dcba12 100755 --- a/scripts/release/validate_staged_bundles.sh +++ b/scripts/release/validate_staged_bundles.sh @@ -47,6 +47,7 @@ declare -a BUNDLE_URLS=( "${STAGING_REPO}/hudi-spark3-bundle_2.12/${VERSION}/hudi-spark3-bundle_2.12-${VERSION}.jar" "${STAGING_REPO}/hudi-spark3.1-bundle_2.12/${VERSION}/hudi-spark3.1-bundle_2.12-${VERSION}.jar" "${STAGING_REPO}/hudi-spark3.2-bundle_2.12/${VERSION}/hudi-spark3.2-bundle_2.12-${VERSION}.jar" +"${STAGING_REPO}/hudi-spark3.3-bundle_2.12/${VERSION}/hudi-spark3.3-bundle_2.12-${VERSION}.jar" "${STAGING_REPO}/hudi-timeline-server-bundle/${VERSION}/hudi-timeline-server-bundle-${VERSION}.jar" "${STAGING_REPO}/hudi-trino-bundle/${VERSION}/hudi-trino-bundle-${VERSION}.jar" "${STAGING_REPO}/hudi-utilities-bundle_2.11/${VERSION}/hudi-utilities-bundle_2.11-${VERSION}.jar"
