Smoke test with Liberty 23.0.0.3 (#8320)

This commit is contained in:
Felix Wong 2023-04-20 02:57:00 -04:00 committed by GitHub
parent 397bb1454a
commit 51e3b77226
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 2 deletions

View File

@ -167,7 +167,7 @@ These are the application servers that the smoke tests are run against:
| [Tomcat](http://tomcat.apache.org/) | 7.0.x | OpenJDK 8 | [`ubuntu-latest`], [`windows-latest`] |
| [Tomcat](http://tomcat.apache.org/) | 7.0.x, 8.5.x, 9.0.x, 10.0.x | OpenJDK 8, 11, 17 | [`ubuntu-latest`], [`windows-latest`] |
| [TomEE](https://tomee.apache.org/) | 7.x, 8.x | OpenJDK 8, 11, 17 | [`ubuntu-latest`], [`windows-latest`] |
| [Open Liberty](https://openliberty.io/) | 21.x, 22.x | OpenJDK 8, 11, 17 | [`ubuntu-latest`], [`windows-latest`] |
| [Open Liberty](https://openliberty.io/) | 21.x, 22.x, 23.x | OpenJDK 8, 11, 17 | [`ubuntu-latest`], [`windows-latest`] |
| [Websphere Traditional](https://www.ibm.com/uk-en/cloud/websphere-application-server) | 8.5.5.x, 9.0.x | IBM JDK 8 | Red Hat Enterprise Linux 8.4 |
| [WildFly](https://www.wildfly.org/) | 13.x | OpenJDK 8 | [`ubuntu-latest`], [`windows-latest`] |
| [WildFly](https://www.wildfly.org/) | 17.x, 21.x, 25.x | OpenJDK 8, 11, 17 | [`ubuntu-latest`], [`windows-latest`] |

View File

@ -54,7 +54,7 @@ abstract class AppServerTest extends SmokeTest {
@Override
protected String getTargetImage(String jdk, String serverVersion, boolean windows) {
String platformSuffix = windows ? "-windows" : ""
String extraTag = windows ? "20230302.4309128636" : "20230301.4309128636"
String extraTag = "20230418.4737426282"
String fullSuffix = "${serverVersion}-jdk$jdk$platformSuffix-$extraTag"
return getTargetImagePrefix() + ":" + fullSuffix
}

View File

@ -35,3 +35,7 @@ class LibertyServletOnly21Jdk11 extends LibertySmokeTest {
@AppServer(version = "22.0.0.12", jdk = "11")
class LibertyServletOnly22Jdk11 extends LibertySmokeTest {
}
@AppServer(version = "23.0.0.3", jdk = "11")
class LibertyServletOnly23Jdk11 extends LibertySmokeTest {
}

View File

@ -70,3 +70,31 @@ class Liberty22Jdk11Openj9 extends LibertySmokeTest {
@AppServer(version = "22.0.0.12", jdk = "17-openj9")
class Liberty22Jdk17Openj9 extends LibertySmokeTest {
}
@AppServer(version = "23.0.0.3", jdk = "8")
class Liberty23Jdk8 extends LibertySmokeTest {
}
@AppServer(version = "23.0.0.3", jdk = "11")
class Liberty23Jdk11 extends LibertySmokeTest {
}
@AppServer(version = "23.0.0.3", jdk = "17")
class Liberty23Jdk17 extends LibertySmokeTest {
}
@AppServer(version = "23.0.0.3", jdk = "19")
class Liberty23Jdk19 extends LibertySmokeTest {
}
@AppServer(version = "23.0.0.3", jdk = "8-openj9")
class Liberty23Jdk8Openj9 extends LibertySmokeTest {
}
@AppServer(version = "23.0.0.3", jdk = "11-openj9")
class Liberty23Jdk11Openj9 extends LibertySmokeTest {
}
@AppServer(version = "23.0.0.3", jdk = "17-openj9")
class Liberty23Jdk17Openj9 extends LibertySmokeTest {
}