Run tests with jdk 23 (#12329)
This commit is contained in:
parent
1dfc1545f8
commit
1f8026e28c
|
@ -198,7 +198,7 @@ jobs:
|
|||
- 11
|
||||
- 17
|
||||
- 21
|
||||
- 22
|
||||
- 23
|
||||
vm:
|
||||
- hotspot
|
||||
- openj9
|
||||
|
@ -209,7 +209,7 @@ jobs:
|
|||
- 3
|
||||
exclude:
|
||||
- vm: ${{ inputs.skip-openj9-tests && 'openj9' || '' }}
|
||||
- test-java-version: 22
|
||||
- test-java-version: 23
|
||||
vm: openj9
|
||||
fail-fast: false
|
||||
steps:
|
||||
|
|
|
@ -18,6 +18,11 @@ dependencies {
|
|||
testServer("org.wildfly:wildfly-dist:18.0.0.Final@zip")
|
||||
}
|
||||
|
||||
otelJava {
|
||||
// due to security manager deprecation this test does not work on jdk 23 with default configuration
|
||||
maxJavaVersionForTests.set(JavaVersion.VERSION_22)
|
||||
}
|
||||
|
||||
tasks {
|
||||
// extract wildfly dist, path is used from arquillian.xml
|
||||
val setupServer by registering(Copy::class) {
|
||||
|
|
|
@ -19,6 +19,11 @@ dependencies {
|
|||
testServer("org.wildfly:wildfly-dist:18.0.0.Final@zip")
|
||||
}
|
||||
|
||||
otelJava {
|
||||
// due to security manager deprecation this test does not work on jdk 23 with default configuration
|
||||
maxJavaVersionForTests.set(JavaVersion.VERSION_22)
|
||||
}
|
||||
|
||||
tasks {
|
||||
// extract wildfly dist, path is used from arquillian.xml
|
||||
val setupServer by registering(Copy::class) {
|
||||
|
|
|
@ -28,6 +28,11 @@ dependencies {
|
|||
testServer("org.wildfly:wildfly-dist:18.0.0.Final@zip")
|
||||
}
|
||||
|
||||
otelJava {
|
||||
// due to security manager deprecation this test does not work on jdk 23 with default configuration
|
||||
maxJavaVersionForTests.set(JavaVersion.VERSION_22)
|
||||
}
|
||||
|
||||
tasks {
|
||||
// extract wildfly dist, path is used from arquillian.xml
|
||||
val setupServer by registering(Copy::class) {
|
||||
|
|
Loading…
Reference in New Issue