Rename the generated apijar files to -api.jar#14909
Merged
dweiss merged 1 commit intoapache:mainfrom Jul 7, 2025
Merged
Conversation
rmuir
approved these changes
Jul 7, 2025
Member
rmuir
left a comment
There was a problem hiding this comment.
Looks good. I expect dev-tools/scripts/smokeTestRelease.py:630 to complain, but we can fix it.
Contributor
Author
I think this only checks the top-level files? I keep an eye on the nightly run for this so if it complains, I'll follow-up. |
Member
|
@dweiss here would be my proposed mod (a bit hacky, but it should do the trick if we need) diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index fbcb0586cd2..17b816162fc 100755
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -633,7 +633,7 @@ def verifyUnpacked(java: Any, artifact: str, unpackPath: str, gitRevision: str,
if isSrc:
print(" make sure no JARs/WARs in src dist...")
- lines = os.popen("find . -name \\*.jar").readlines()
+ lines = os.popen("find . -name \\*.jar -not -name \\*-api.jar").readlines()
if len(lines) != 0:
print(" FAILED:")
for line in lines: |
Contributor
Author
|
Oh, I see it now. I'll add it with the reference to this issue. |
dweiss
added a commit
that referenced
this pull request
Jul 7, 2025
Contributor
Author
|
Checking if smoke tester is happy - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.