davsclaus commented on PR #25800: URL: https://github.com/apache/camel/pull/25800#issuecomment-5441301301
Confirmed. The GraalVM SDK changelog explicitly documents this — in GraalVM 25.1.3 (GR-73953): ▎ "the optimizing Truffle runtime is supported only with GraalVM 25.1 or later... no longer supported with GraalVM 25.0 or earlier, or on plain OpenJDK or Oracle JDK via jargraal... fallback runtime remains supported on standard JDKs and remains backwards compatible down to JDK 21." So starting with the GraalVM 25.1+ line (which 25.3.4.1 is part of), Truffle's minimum supported JDK for standard/plain JDKs is JDK 21 — JDK 17 is no longer supported. That's exactly why the CI failure shows NoSuchMethodError: 'long java.lang.Thread.threadId()' (a JDK 19+ API) when camel-python3's GraalPy-based tests run on the JDK 17 build leg. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
