-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AMLII-1194 - Updated CI JDKs to use the current LTS versions of the JDK #491
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,34 +17,51 @@ jobs: | |
docker: | ||
- image: cimg/openjdk:8.0 | ||
<<: *lint_steps | ||
|
||
# JDK 8 (LTS) - 31 Dec 2030 (extended support) | ||
test_openjdk8: | ||
docker: | ||
- image: cimg/openjdk:8.0 | ||
<<: *build_steps | ||
|
||
# JDK 11 (LTS) - 31 Jan 2032 (extended support) | ||
test_openjdk11: | ||
docker: | ||
- image: cimg/openjdk:11.0 | ||
<<: *build_steps | ||
test_openjdk15: | ||
docker: | ||
- image: cimg/openjdk:15.0 | ||
<<: *build_steps | ||
|
||
# JDK 11 (LTS) - 30 Sep 2029 (extended support) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should this say jdk 17? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep 👍🏽 |
||
test_openjdk17: | ||
docker: | ||
- image: cimg/openjdk:17.0 | ||
<<: *build_steps | ||
|
||
# Available in Ubuntu 22.04 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does this comment mean? Is jdk 18 what ships by default with ubuntu 22.04? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was looking at which ones we test with + which ones are in the LTS version of Ubuntu. Mainly as trying to figure out what the test matrix should look like. |
||
test_openjdk18: | ||
docker: | ||
- image: cimg/openjdk:18.0 | ||
<<: *build_steps | ||
|
||
# Available in Ubuntu 22.04 | ||
test_openjdk19: | ||
docker: | ||
- image: cimg/openjdk:19.0 | ||
<<: *build_steps | ||
|
||
# JDK 21 (LTS) - 30 Sep 2031 (extended support) | ||
test_openjdk21: | ||
docker: | ||
- image: cimg/openjdk:21.0 | ||
<<: *build_steps | ||
|
||
workflows: | ||
version: 2 | ||
workflow: | ||
jobs: | ||
- lint_openjdk8 | ||
- test_openjdk8 | ||
- test_openjdk11 | ||
- test_openjdk15 | ||
- test_openjdk17 | ||
- test_openjdk18 | ||
- test_openjdk19 | ||
- test_openjdk21 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If there's a good reference you have for these LTS dates, may be useful to drop in here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I used https://endoflife.date/oracle-jdk to work them out.