Skip to content

Commit 6e15e8a

Browse files
committed
feat: adding support for Java25 tests to work properly in CI
1 parent 39962cb commit 6e15e8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.kokoro/tests/run_test_java.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SCRIPT_DIR="$(dirname $0)/"
2020

2121
# Fail the tests if no Java version was found.
2222
POM_JAVA=$(grep -oP '(?<=<maven.compiler.target>).*?(?=</maven.compiler.target>)' pom.xml)
23-
ALLOWED_VERSIONS=("1.8" "11" "17" "21")
23+
ALLOWED_VERSIONS=("1.8" "11" "17" "21" "25")
2424
# shellcheck disable=SC2199
2525
# shellcheck disable=SC2076
2626
if [[ "$POM_JAVA" = "" ]] || [[ ! " ${ALLOWED_VERSIONS[*]} " =~ " ${POM_JAVA} " ]]; then

0 commit comments

Comments
 (0)