From 6e15e8a374ae5f83e7e90d103a60d82cc5ddb163 Mon Sep 17 00:00:00 2001 From: Abhinand Sundararajan Date: Mon, 3 Nov 2025 17:17:48 +0530 Subject: [PATCH] feat: adding support for Java25 tests to work properly in CI --- .kokoro/tests/run_test_java.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/tests/run_test_java.sh b/.kokoro/tests/run_test_java.sh index 9d427468238..fc0a7a93967 100755 --- a/.kokoro/tests/run_test_java.sh +++ b/.kokoro/tests/run_test_java.sh @@ -20,7 +20,7 @@ SCRIPT_DIR="$(dirname $0)/" # Fail the tests if no Java version was found. POM_JAVA=$(grep -oP '(?<=).*?(?=)' pom.xml) -ALLOWED_VERSIONS=("1.8" "11" "17" "21") +ALLOWED_VERSIONS=("1.8" "11" "17" "21" "25") # shellcheck disable=SC2199 # shellcheck disable=SC2076 if [[ "$POM_JAVA" = "" ]] || [[ ! " ${ALLOWED_VERSIONS[*]} " =~ " ${POM_JAVA} " ]]; then