-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
182 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# Create a Docker image that is ready to run the main Checker Framework tests, | ||
# using JDK 20. | ||
# using JDK 22. | ||
# (This is OpenJDK, not Oracle JDK. There are different instructions for | ||
# installing a LTS release of Java.) | ||
# To convert this file to use a newer JDK, search (from the top level of the | ||
# Checker Framework and Annotation Tools repositories) for: (java|jdk).?20\b | ||
# Checker Framework and Annotation Tools repositories) for: (java|jdk).?22\b | ||
|
||
# "ubuntu" is the latest LTS release. "ubuntu:rolling" is the latest release. | ||
# Ubuntu 23.10 contains the package "openjdk-20-jdk". | ||
FROM ubuntu:23.10 | ||
# See releases at https://hub.docker.com/_/ubuntu for available images. | ||
# See https://packages.ubuntu.com/search?suite=default§ion=all&arch=any&keywords=openjdk-22-jdk&searchon=names | ||
# to see what Ubuntu versions support a particular OpenJDK version. | ||
FROM ubuntu:mantic | ||
MAINTAINER Michael Ernst <[email protected]> | ||
|
||
# According to | ||
|
@@ -29,7 +31,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \ | |
ca-certificates-java \ | ||
&& aptitude -y install \ | ||
openjdk-17-jdk \ | ||
openjdk-20-jdk | ||
openjdk-22-jdk | ||
|
||
# Known good combinations of JTReg and the JDK appear at https://builds.shipilev.net/jtreg/ . | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# Create a Docker image that is ready to run the full Checker Framework tests, | ||
# including building the manual and Javadoc, using JDK 20. | ||
# including building the manual and Javadoc, using JDK 22. | ||
# (This is OpenJDK, not Oracle JDK. There are different instructions for | ||
# installing a LTS release of Java.) | ||
# To convert this file to use a newer JDK, search (from the top level of the | ||
# Checker Framework and Annotation Tools repositories) for: (java|jdk).?20\b | ||
# Checker Framework and Annotation Tools repositories) for: (java|jdk).?22\b | ||
|
||
# "ubuntu" is the latest LTS release. "ubuntu:rolling" is the latest release. | ||
# Ubuntu 23.10 contains the package "openjdk-20-jdk". | ||
FROM ubuntu:23.10 | ||
# See releases at https://hub.docker.com/_/ubuntu for available images. | ||
# See https://packages.ubuntu.com/search?suite=default§ion=all&arch=any&keywords=openjdk-22-jdk&searchon=names | ||
# to see what Ubuntu versions support a particular OpenJDK version. | ||
FROM ubuntu:mantic | ||
MAINTAINER Michael Ernst <[email protected]> | ||
|
||
# According to | ||
|
@@ -29,7 +31,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \ | |
ca-certificates-java \ | ||
&& aptitude -y install \ | ||
openjdk-17-jdk \ | ||
openjdk-20-jdk | ||
openjdk-22-jdk | ||
|
||
# Known good combinations of JTReg and the JDK appear at https://builds.shipilev.net/jtreg/ . | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.