From 11dfca6db11b85069638f217be3a4519b791c56a Mon Sep 17 00:00:00 2001 From: Tim Liu Date: Mon, 23 May 2022 09:26:49 +0800 Subject: [PATCH] nightly CI to install and deploy cuda11 classifier dist jar [skip ci] (#5581) As we do not generate dist extra-resource jar without cuda11 classifier after PR https://github.com/NVIDIA/spark-rapids/pull/5558 Change nightly CI job accordingly Signed-off-by: Tim Liu --- jenkins/spark-nightly-build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jenkins/spark-nightly-build.sh b/jenkins/spark-nightly-build.sh index a47bf2d6c9f..e4016911806 100755 --- a/jenkins/spark-nightly-build.sh +++ b/jenkins/spark-nightly-build.sh @@ -35,7 +35,7 @@ ART_ID=$(mvnEval project.artifactId) ART_GROUP_ID=$(mvnEval project.groupId) ART_VER=$(mvnEval project.version) -DIST_FPATH="$DIST_PL/target/$ART_ID-$ART_VER" +DIST_FPATH="$DIST_PL/target/$ART_ID-$ART_VER-$CUDA_CLASSIFIER" DIST_POM_FPATH="$DIST_PL/target/extra-resources/META-INF/maven/$ART_GROUP_ID/$ART_ID/pom.xml" DIST_PROFILE_OPT=-Dincluded_buildvers=$(IFS=,; echo "${SPARK_SHIM_VERSIONS[*]}") @@ -114,7 +114,6 @@ $MVN -B clean install -pl '!tools' \ distWithReducedPom "install" if [[ $SKIP_DEPLOY != 'true' ]]; then - DIST_FPATH="$DIST_FPATH-$CUDA_CLASSIFIER" distWithReducedPom "deploy" # this deploy includes 'tools' that is unconditionally built with Spark 3.1.1