CAMEL-24616: Build and test with JDK 27 - #26133
Draft
gnodet wants to merge 1 commit into
Draft
Conversation
- Add Jenkinsfile.jdk27 for weekly Jenkins CI builds on JDK 27 EA (modeled on existing Jenkinsfile.jdk26, runs on ppc64le, s390x, and ubuntu-avx) - Add JDK 27-ea as an experimental entry in the GitHub Actions PR build matrix (continue-on-error: true, so failures won't block PRs) Signed-off-by: Guillaume Nodet <gnodet@gmail.com>
Contributor
|
🌟 Thank you for your contribution to the Apache Camel project! 🌟 🐫 Apache Camel Committers, please review the following items:
|
apupier
requested changes
Sep 4, 2026
apupier
left a comment
Contributor
There was a problem hiding this comment.
Better to wait that the final relase of JDK 27 is available on the Apache Jenkins instance
Comment on lines
+81
to
+84
| - java: '27-ea' | ||
| # JDK 27 EA: early-access build to catch compatibility issues ahead of the Sep 2026 GA. | ||
| # Experimental — failures do not block PR merges. | ||
| experimental: true |
Contributor
There was a problem hiding this comment.
given that we are lacking GitHub resources, we took the option to not add the jdk 27 on GitHub side
| axes { | ||
| axis { | ||
| name 'JDK_NAME' | ||
| values 'jdk_27_latest' |
Contributor
There was a problem hiding this comment.
not yet available on the Apaceh jenkins
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.
What
Add CI infrastructure to build and test Camel with JDK 27 (EA), as a checkpoint toward the next LTS (JDK 29, September 2027).
Changes
Jenkinsfile.jdk27— Weekly Jenkins CI build on JDK 27 EA, modeled on the existingJenkinsfile.jdk26. Runs the full build+test matrix onppc64le,s390x, andubuntu-avxplatforms using thejdk_27_latesttool.GitHub Actions PR build (
.github/workflows/pr-build-main.yml) — Added JDK27-eaas an experimental matrix entry withcontinue-on-error: true. This gives early visibility into JDK 27 compatibility on every PR without blocking merges.Notes
mvn clean install -DskipTestssucceeds with JDK 27 EA.jdk_27_latesttool must be configured on the ASF Jenkins infrastructure for the Jenkinsfile to work (similar to howjdk_26_latestwas set up for CAMEL-23660).actions/setup-javawithjava-version: 27-eaanddistribution: temurin, which is supported per the setup-java docs.Fixes: https://issues.apache.org/jira/browse/CAMEL-24616
AI agent (Hermes on behalf of gnodet)