Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Deploy release candidates to local maven repo for dependency check[skip ci] #10201
Deploy release candidates to local maven repo for dependency check[skip ci] #10201
Changes from all commits
adfef12
4442749
9ae974f
dd32789
94f3078
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
artifact list file created by deploy.sh, e.g.,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should
be in this list?
When we do the test with
mvn dependency:get
for the documented artifacts such ascom.nvidia:rapids-4-spark_2.12:24.02.0-SNAPSHOT:jar:cuda11
and one of the pom-type artifacts above is missing we should see a failure anyways, correct?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gerashegalov Yes, you're right, jar's dependency contain the pom files!
My original thought was to check anything we deployed, though pom check would be duplicated.
Let me remove pom from the check list.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated, artifact list will be like
similar list for scala-2.13 jars, and for arm64 jars
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed in the original review: we should
rm -r $M2_CACHE/com/nvidia
before this line or even the whole$M2_CACHE
to avoid side-effect of previous dependency:getThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, filed a follow-up PR for it #10278
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deploy pom.xml file of the module
jdk-profiles
here, to PASS the release artifact's dependency checkThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The artifact file is like below, and our plugin nightly build CI will check all these artifacts dependencies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sources.jar
andjavadoc.jar
files are required by OSS releaseGenerate these 2 files to mimic OSS release in our nightly build CI