Skip to content

feat: update GraalVM image B to GraalVM for JDK 24 #1024

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .cloudbuild/graalvm-b.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ghcr.io/graalvm/graalvm-community:23.0.2-ol9-20250121
FROM ghcr.io/graalvm/graalvm-community:24.0.1-ol8-20250415

# native-image comes out of the box
RUN native-image --version

RUN microdnf update -y oraclelinux-release-el9 && \
microdnf install -y wget unzip git && \
RUN microdnf install -y wget unzip git && \
# Install maven
wget -q https://archive.apache.org/dist/maven/maven-3/3.9.4/binaries/apache-maven-3.9.4-bin.zip -O /tmp/maven.zip && \
unzip /tmp/maven.zip -d /tmp/maven && \
Expand Down
2 changes: 1 addition & 1 deletion .cloudbuild/graalvm-b.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ commandTests:
- name: "version"
command: ["java", "-version"]
# java -version outputs to stderr...
expectedError: ["openjdk version \"23.0.2\"", "GraalVM CE 23.0.2"]
expectedError: ["openjdk version \"24.0.1\"", "GraalVM CE 24.0.1"]
- name: "maven"
command: ["mvn", "-version"]
expectedOutput: ["Apache Maven 3.9.4"]
Expand Down