We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 326c007 commit b4f006bCopy full SHA for b4f006b
1 file changed
.github/workflows/ci.yml
@@ -18,14 +18,24 @@ jobs:
18
os:
19
- ubuntu-latest
20
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK (optional).
21
+ # Reference: https://adoptium.net/support/
22
java:
23
- 17
24
- 21
- - 23
25
+ - 24
26
container:
27
- wildfly-managed
28
- glassfish-managed
29
- tomee-managed
30
+ exclude:
31
+ # GlassFish 7 does not start on Java 24
32
+ # https://github.com/eclipse-ee4j/glassfish/issues/25437
33
+ - java: 24
34
+ container: glassfish-managed
35
+ # TomEE does not launch on Java 24
36
+ # https://issues.apache.org/jira/browse/TOMEE-4474
37
38
+ container: tomee-managed
39
steps:
40
- name: Checkout
41
uses: actions/checkout@v4
0 commit comments