Skip to content

Commit

Permalink
Merge pull request #1846 from cherylking/bumpLibertyVersion240011
Browse files Browse the repository at this point in the history
Test with 24.0.0.11 Liberty runtime
  • Loading branch information
mattbsox authored Nov 19, 2024
2 parents 53cf892 + 2dba66b commit 333f9c9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
RUNTIME: [ol, wlp]
RUNTIME_VERSION: [24.0.0.10]
RUNTIME_VERSION: [24.0.0.11]
java: [21, 17, 11, 8]
exclude:
- java: 8
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
RUNTIME: [ol, wlp]
RUNTIME_VERSION: [24.0.0.10]
RUNTIME_VERSION: [24.0.0.11]
java: [21, 17, 11, 8]
exclude:
- java: 8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ public class InstallFeaturesVersionlessServerTest extends BaseInstallFeature {
@Test
public void testInstalledFeatures() throws Exception {


// as of 24.0.0.11 the versionless features no longer get reported as "installed" via productInfo command
// check for specific installed versioned features instead
assertInstalled("appSecurityClient-1.0");
assertInstalled("servlet");
assertInstalled("servlet-4.0");
assertNotInstalled("beanValidation-2.0");
assertNotInstalled("couchdb-1.0");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@ public class InstallFeaturesVersionlessWithVersionedServerTest extends BaseInsta
@Test
public void testInstalledFeatures() throws Exception {


assertInstalled("beanValidation");
assertInstalled("jsp");
// as of 24.0.0.11 the versionless features no longer get reported as "installed" via productInfo command
// check for specific installed versioned features instead
assertInstalled("beanValidation-3.0");
assertInstalled("pages-3.0");
assertInstalled("enterpriseBeans-4.0");
assertInstalled("ejb");
assertInstalled("jdbc");
assertInstalled("enterpriseBeansHome-4.0");
assertInstalled("enterpriseBeansRemote-4.0");
assertInstalled("jdbc-4.2");
assertInstalled("servlet-5.0");

Set<String> expectedFeatures = new HashSet<String>();
Expand Down

0 comments on commit 333f9c9

Please sign in to comment.