Skip to content

Commit 971fdb0

Browse files
authored
Fix smoke test images (#10452)
1 parent 16ec9f3 commit 971fdb0

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

smoke-tests/images/servlet/build.gradle.kts

+9-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ val targets = mapOf(
3939
),
4040
"payara" to listOf(
4141
ImageTarget(listOf("5.2020.6", "5.2021.8"), listOf("hotspot", "openj9"), listOf("8", "11")),
42-
ImageTarget(listOf("6.2023.12"), listOf("hotspot", "openj9"), listOf("11", "17", "21"), war = "servlet-5.0")
42+
// Test application is not deployed when server is sarted with hotspot jdk version 21
43+
ImageTarget(listOf("6.2023.12"), listOf("hotspot"), listOf("11", "17"), war = "servlet-5.0"),
44+
ImageTarget(listOf("6.2023.12"), listOf("openj9"), listOf("11", "17", "21"), war = "servlet-5.0")
4345
),
4446
"tomcat" to listOf(
4547
ImageTarget(listOf("7.0.109"), listOf("hotspot", "openj9"), listOf("8"), mapOf("majorVersion" to "7")),
@@ -58,7 +60,12 @@ val targets = mapOf(
5860
"wildfly" to listOf(
5961
ImageTarget(listOf("13.0.0.Final"), listOf("hotspot", "openj9"), listOf("8")),
6062
ImageTarget(
61-
listOf("17.0.1.Final", "21.0.0.Final", "28.0.1.Final", "29.0.1.Final", "30.0.1.Final"),
63+
listOf("17.0.1.Final", "21.0.0.Final"),
64+
listOf("hotspot", "openj9"),
65+
listOf("8", "11", "17", "21")
66+
),
67+
ImageTarget(
68+
listOf("28.0.1.Final", "29.0.1.Final", "30.0.1.Final"),
6269
listOf("hotspot", "openj9"),
6370
listOf("11", "17", "21"),
6471
war = "servlet-5.0"

0 commit comments

Comments
 (0)