diff --git a/.github/workflows/native-list-dir.yml b/.github/workflows/native-list-dir.yml index 152502072..a92d0ac8f 100644 --- a/.github/workflows/native-list-dir.yml +++ b/.github/workflows/native-list-dir.yml @@ -20,7 +20,7 @@ jobs: timeout-minutes: 20 strategy: matrix: - java-version: ['17', 'dev'] + java-version: ['21', 'dev'] steps: - uses: actions/checkout@v3 - uses: graalvm/setup-graalvm@v1 @@ -34,4 +34,3 @@ jobs: run: | cd native-list-dir ./build.sh - ./run.sh diff --git a/javagdbnative/README.MD b/javagdbnative/README.MD index 05bc27849..c06b3ec67 100644 --- a/javagdbnative/README.MD +++ b/javagdbnative/README.MD @@ -46,5 +46,5 @@ The `mvn -Pnative -DskipTests package` command will package a Java application i ### References -1. [GraalVM Tools for Java](https://www.graalvm.org/jdk17/tools/vscode/graalvm-extension/) -2. [Native Image Debug Info Feature](https://www.graalvm.org/jdk17/reference-manual/native-image/debugging-and-diagnostics/DebugInfo/) \ No newline at end of file +- [GraalVM Tools for Java](https://www.graalvm.org/jdk17/tools/vscode/graalvm-extension/) +- [Native Image Debug Info Feature](https://www.graalvm.org/jdk17/reference-manual/native-image/debugging-and-diagnostics/DebugInfo/) \ No newline at end of file diff --git a/native-list-dir/README.md b/native-list-dir/README.md index 652128ba2..1003d381b 100644 --- a/native-list-dir/README.md +++ b/native-list-dir/README.md @@ -1,4 +1,4 @@ -# GraalVM Demos: Native images for Faster Startup +# GraalVM Native Image for Faster Startup Demo This repository contains a Java application that counts files and their sizes in a specified directory. The demo shows how to compile this Java application ahead-of-time with Oracle GraalVM Native Image and apply Profile-Guided Optimization (PGO) for more performance gains.