From 5b0fd2013436990601cac2e76b6e2a360887b7f6 Mon Sep 17 00:00:00 2001 From: Olya Gupalo Date: Wed, 18 Dec 2024 19:35:11 +0200 Subject: [PATCH] Temporary fix paths to workflow pass badegs for some demos --- .../compiler-java-stream-benchmark.yml | 2 +- README.md | 23 +++---------------- 2 files changed, 4 insertions(+), 21 deletions(-) diff --git a/.github/workflows/compiler-java-stream-benchmark.yml b/.github/workflows/compiler-java-stream-benchmark.yml index 1249d77f..6c4195c8 100644 --- a/.github/workflows/compiler-java-stream-benchmark.yml +++ b/.github/workflows/compiler-java-stream-benchmark.yml @@ -20,7 +20,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - java-version: ['21', '23.0.1'] + java-version: ['21', '24-ea'] steps: - uses: actions/checkout@v4 - uses: graalvm/setup-graalvm@v1 diff --git a/README.md b/README.md index 290fcf53..2bd2df29 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ cd graalvm-demos Demonstrates how to build native executables from a class file and a JAR file from the command line
Technologies: Native Image
Reference: Native Image Getting Started - java-hello-world-maven
java-hello-world-maven + java-hello-world-maven
java-hello-world-maven Demonstrates how to generate a native executable using the Native Build Tools Maven plugin
Technologies: Native Image, Native Build Tools Maven plugin
Reference: Oracle GraalVM in OCI Code Editor @@ -44,11 +44,11 @@ cd graalvm-demos Demonstrates how to compile a CLI application into a native executable and then apply Profile-Guided Optimizations (PGO) for more performance gains
Technologies: Native Image, PGO - multithreading-demo
streams + multithreading-demo
archive/multithreading-demo Demonstrates how to optimize a Java application that does synchronous and asynchronous threads execution
Technologies: Native Image Build Reports, Native Build Tools Maven plugin
Reference: Making sense of Native Image contents - javagdbnative
javagdbnative + javagdbnative
archive/javagdbnative Demonstrates how to debug a Java application, built into a native executable in VS Code
Technologies: Native Image, Maven, GraalVM Tools for Java
Reference: Native Image Debugging in VS Code @@ -149,23 +149,6 @@ cd graalvm-demos -### Scala - - - - - - - - - - - - - - -
NameDescription
scalac-nativeDemonstrates how to build a native executable of the Scala compiler. The resulting binary has no dependencies on the JDK.
Technologies: Scala 2.12.x, Native Image
Reference: Compiling Scala Faster with GraalVM
- ### Polyglot