File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
buildSrc/src/main/kotlin/datadog/gradle/plugin/testJvmConstraints Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ variables:
2828 GRADLE_VERSION : " 8.14.3" # must match gradle-wrapper.properties
2929 MAVEN_REPOSITORY_PROXY : " https://depot-read-api-java.us1.ddbuild.io/magicmirror/magicmirror/@current/"
3030 GRADLE_PLUGIN_PROXY : " https://depot-read-api-java.us1.ddbuild.io/magicmirror/magicmirror/@current/"
31- BUILDER_IMAGE_VERSION_PREFIX : " v25.11 -" # use either an empty string (e.g. "") for latest images or a version followed by a hyphen (e.g. "v25.05-")
31+ BUILDER_IMAGE_VERSION_PREFIX : " 126_merge -" # use either an empty string (e.g. "") for latest images or a version followed by a hyphen (e.g. "v25.05-")
3232 REPO_NOTIFICATION_CHANNEL : " #apm-java-escalations"
3333 DEFAULT_TEST_JVMS : /^(8|11|17|21|25)$/ # the latest "stable" version is LTS v25
3434 PROFILE_TESTS :
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class TestJvmSpec(val project: Project) {
2828 if (testJvm == " stable" ) {
2929 val javaVersions = project.providers.environmentVariablesPrefixedBy(" JAVA_" ).map { javaHomes ->
3030 javaHomes
31- .filter { it.key.matches(Regex (" ^JAVA_[0-9]+_HOME$" )) }
31+ .filter { it.key.matches(Regex (" ^JAVA_[0-9]+_HOME$" )) && it.key != " JAVA_26_HOME " } // JDK 26 is EA
3232 .map { Regex (" ^JAVA_(\\ d+)_HOME$" ).find(it.key)!! .groupValues[1 ].toInt() }
3333 }.get()
3434
You can’t perform that action at this time.
0 commit comments