-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Publish nightly cudf-java JARs to Sonatype snapshots #24134
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
Changes from all commits
ac69932
d26e09e
ca3a0da
82fedf5
10aeae2
0c63bf7
d2ea685
6f80cae
4b9c679
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -106,6 +106,14 @@ if rapids-is-release-build; then | |
| cp -p "${REPO_ROOT}/java/pom.xml" "${REPO_ROOT}/java/pom.xml.backup" | ||
| POM_WAS_REWRITTEN=1 | ||
| mvn versions:set -DnewVersion="${CUDF_VERSION}" -DgenerateBackupPoms=false "${BUILD_ARG[@]}" | ||
| else | ||
| # Non-release runs must publish to Sonatype snapshots, so the POM must | ||
| # already carry a -SNAPSHOT version. Fail fast if it doesn't, before the | ||
| # (expensive) mvn package step. | ||
| if [[ ${CUDF_VERSION} != *-SNAPSHOT ]]; then | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟠 Major | 🏗️ Heavy lift Add focused contract tests for Java publication versioning and routing. The existing packaging and packaged-Java tests do not assert accepted or rejected version forms, release versus snapshot behavior, or publication routing by ref. Add tests for these cases. A unit benchmark is not applicable because this Java-CI area has no unit-benchmark suite; the repository guidance does not establish one for shell scripts or GitHub Actions. 🤖 Prompt for AI Agents |
||
| echo "Error: non-release build read a non-SNAPSHOT version from pom.xml: '${CUDF_VERSION}'" >&2 | ||
| exit 1 | ||
| fi | ||
| fi | ||
|
|
||
| rapids-logger "Packaging cuDF Java JAR ${CUDF_VERSION}" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.