Run tests with jdk 23 (#12329)

This commit is contained in:
Lauri Tulmin 2024-09-26 12:16:41 +03:00 committed by GitHub
parent 1dfc1545f8
commit 1f8026e28c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 17 additions and 2 deletions

View File

@ -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:

View File

@ -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) {

View File

@ -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) {

View File

@ -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) {