-
-
Notifications
You must be signed in to change notification settings - Fork 314
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
exclude JDK23+ and jdknext openj9 xmac testing on mac10 #5688
Conversation
buildenv/jenkins/openjdk_tests
Outdated
LABEL += "&&!sw.os.mac.10" | ||
// assume if JDK_VERSION is set to next, JDK_VERSION is 23+ | ||
if (params.JDK_IMPL == "openj9" && PLATFORM == "x86-64_mac" && params.JDK_VERSION) { | ||
if (params.JDK_VERSION.equalsIgnoreCase("next") || params.JDK_VERSION.toInteger() >= 23) { |
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.
I think this should be using isInteger()
rather than make a special case for "next".
if (!params.JDK_VERSION.isInteger() || params.JDK_VERSION.toInteger() >= 23) {
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.
updated
The grinder states "With AUTO_DETECT=on, JDK_VERSION value is required only if SDK_RESOURCE=nightly/releases. Otherwise, please leave it empty." Setting it to next with AUTO_DETECT off won't work. |
Signed-off-by: Lan Xia <Lan_Xia@ca.ibm.com>
Description The test pipeline cannot consume next, so it will try to get Java version and set it at a later stage. AUTO_DETECT has to be set when using JDK_VERSION=next. |
What does "JDK_VERSION=next" mean? Does it have special meaning, or is it just ignored and we could set any non-integer value? |
|
Signed-off-by: Lan Xia <Lan_Xia@ca.ibm.com>
* exclude JDK23+ and jdknext openj9 xmac testing on mac10 (#5688) Signed-off-by: Lan Xia <Lan_Xia@ca.ibm.com> * Support Semeru Artifactoriy SDK URL for releases (#5697) resolves: #5696 and automation/issues/82 Signed-off-by: Lan Xia <Lan_Xia@ca.ibm.com> * Remove support for semeru-runtimes/api (#5700) related: #5696 and automation/issues/82 Signed-off-by: Lan Xia <Lan_Xia@ca.ibm.com> --------- Signed-off-by: Lan Xia <Lan_Xia@ca.ibm.com>
related: #5686 (comment)