Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Databricks 13.3 from release 23.12 [databricks] #9890

Merged
merged 3 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jenkins/Jenkinsfile-blossom.premerge-databricks
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pipeline {
// 'name' and 'value' only supprt literal string in the declarative Jenkins
// Refer to Jenkins issue https://issues.jenkins.io/browse/JENKINS-62127
name 'DB_RUNTIME'
values '10.4', '11.3', '12.2', '13.3'
values '10.4', '11.3', '12.2'
}
}
stages {
Expand Down
6 changes: 6 additions & 0 deletions jenkins/databricks/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,12 @@ if [[ "$WITH_BLOOP" == "1" ]]; then
MVN_OPT="ch.epfl.scala:bloop-maven-plugin:bloopInstall $MVN_OPT"
fi

# Disabling build for 341db until 24.02
if [[ "$BUILDVER" == "341db" ]]; then
echo "Databricks 341 is not supported as of release 23.12\n"
exit 1
fi

# Build the RAPIDS plugin by running package command for databricks
$MVN_CMD -B -Ddatabricks -Dbuildver=$BUILDVER clean package -DskipTests $MVN_OPT

Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -771,8 +771,7 @@
<databricks.buildvers>
321db,
330db,
332db,
341db
332db
</databricks.buildvers>
<!--
Build and run unit tests on one specific version for each sub-version (e.g. 311, 320, 330)
Expand Down
3 changes: 1 addition & 2 deletions scala2.13/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -771,8 +771,7 @@
<databricks.buildvers>
321db,
330db,
332db,
341db
332db
</databricks.buildvers>
<!--
Build and run unit tests on one specific version for each sub-version (e.g. 311, 320, 330)
Expand Down