-
Notifications
You must be signed in to change notification settings - Fork 554
8314589: javadoc build only shows the first 100 warnings and errors #1216
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
8314589: javadoc build only shows the first 100 warnings and errors #1216
Conversation
|
@andy-goryachev-oracle can you review? @nlisker You might also want to take a look. |
|
👋 Welcome back kcr! A progress list of the required criteria for merging this PR into |
|
why I am getting only 91 warnings? edit: gradle javadoc on mac, java 18 (may be that's why).
|
andy-goryachev-oracle
left a comment
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.
excellent.
|
@kevinrushforth This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be: You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been no new commits pushed to the ➡️ To integrate this PR with the above commit message to the |
Very likely. Btw, our CI builds (for releases) and GHA builds use JDK 19.0.2. JDK 19 added more checks (so we get 187 warnings). JDK 21 also added more checks (we're up to 191). |
|
I didn't test it, but I took a look and the fix seems fine. |
|
/integrate |
|
Going to push as commit 53682dd.
Your commit was automatically rebased without conflicts. |
|
@kevinrushforth Pushed as commit 53682dd. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
This PR bumps the limit for the number of javadoc warnings and error from 100 to 1000.
We currently use the default setting of javadoc which only shows 100 warnings and errors. This is too small, especially for warnings, and can cause us to miss new warnings that arise. Eventually we should fix all our warnings, and we have a task filed to track that, but even then I think the limit is too small.
Without this fix, our current build only shows the "first" 100 warnings it runs into. With this fix, our current build shows all 187 warnings using JDK 19.0.2 and all 191 warnings using JDK 21.
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jfx.git pull/1216/head:pull/1216$ git checkout pull/1216Update a local copy of the PR:
$ git checkout pull/1216$ git pull https://git.openjdk.org/jfx.git pull/1216/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 1216View PR using the GUI difftool:
$ git pr show -t 1216Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jfx/pull/1216.diff
Webrev
Link to Webrev Comment