This is an automated email from the ASF dual-hosted git repository.
snuyanzin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new bf545feb4ee [FLINK-39746][build] Add jdk25 profile in
`common_docker.sh`
bf545feb4ee is described below
commit bf545feb4ee73d30a0a8ecaed0795709b7f05960
Author: Sergey Nuyanzin <[email protected]>
AuthorDate: Mon May 25 11:45:51 2026 +0200
[FLINK-39746][build] Add jdk25 profile in `common_docker.sh`
---
flink-end-to-end-tests/test-scripts/common_docker.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/flink-end-to-end-tests/test-scripts/common_docker.sh
b/flink-end-to-end-tests/test-scripts/common_docker.sh
index d4ddbec669b..6a3da85509a 100644
--- a/flink-end-to-end-tests/test-scripts/common_docker.sh
+++ b/flink-end-to-end-tests/test-scripts/common_docker.sh
@@ -56,6 +56,9 @@ function build_image() {
if [[ ${PROFILE} == *"jdk21"* ]]; then
java_version=21
fi
+ if [[ ${PROFILE} == *"jdk25"* ]]; then
+ java_version=25
+ fi
cd flink-docker
./add-custom.sh -u ${file_server_address}:9999/flink.tgz -n ${image_name}
-j ${java_version}