Run Play smoke tests against Java 17 and 21 (part 2) (#12461)

This commit is contained in:
Trask Stalnaker 2024-10-18 09:07:24 -07:00 committed by GitHub
parent 4208ff5a14
commit 8de4c25916
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

@ -17,7 +17,7 @@ import static io.opentelemetry.smoketest.TestContainerManager.useWindowsContaine
class PlaySmokeTest extends SmokeTest {
protected String getTargetImage(String jdk) {
"ghcr.io/open-telemetry/opentelemetry-java-instrumentation/smoke-test-play:jdk$jdk-20210917.1246460868"
"ghcr.io/open-telemetry/opentelemetry-java-instrumentation/smoke-test-play:jdk$jdk-20241018.11404849345"
}
@Override
@ -43,8 +43,6 @@ class PlaySmokeTest extends SmokeTest {
stopTarget()
where:
// Play doesn't support Java 16 (or 17) yet
// https://github.com/playframework/playframework/pull/10819
jdk << [8, 11, 15]
jdk << [8, 11, 17, 21]
}
}