Drop JDK 21 from the PR build matrix - #1937
Merged
Merged
Conversation
The PR build runs the full incremental build once per JDK, so every PR enqueues three jobs. JDK 17 is the minimum supported version and JDK 25 is the latest LTS, and these two bound what JDK 21 would catch. Testing on 17 and 25 only cuts the PR queue by a third. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
davsclaus
approved these changes
Sep 2, 2026
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.
The PR build workflow runs the full incremental build once per JDK, so every push to a PR enqueues three jobs (17, 21, 25). With the current volume of open PRs the queue backs up and reviewers wait on checks.
JDK 17 is the minimum supported version (#1718) and JDK 25 is the latest LTS, so the two of them bound what a JDK 21 run would catch. This change drops 21 from the matrix, cutting every PR's CI cost by a third.
Only
pr-build-main.ymlhas a JDK matrix; the sync and SBOM workflows already run on a fixed JDK 17 and are unchanged. Existing open PRs keep the three-job matrix until they are rebased onmain.Claude Code on behalf of Federico Mariani