From 5dee2f258793f962216537fe0d18344382bb88c8 Mon Sep 17 00:00:00 2001 From: Marcelo Shima Date: Mon, 10 Jun 2024 09:48:52 -0300 Subject: [PATCH 1/2] improve README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e75eb76..a34dd2e 100644 --- a/README.md +++ b/README.md @@ -75,11 +75,14 @@ If you've enabled e2e testing with Cypress, you can verify its operation using t npm run native-e2e ``` -## Build errors +## Native binary runtime errors GraalVM uses metadata to generate AOT compilation. + A metadata is designed to support an specific version. Missing library range will be added as best bet and will fall back to latest version. +Metadata errors are only catch in runtime. It’s recommended to have cypress e2e tests enabled. + Refer to [GraalVM Reachability Metadata Repository](https://github.com/oracle/graalvm-reachability-metadata/) # Pre-release From 8b156b615d29dacec35b89ed7a534ffab8a736aa Mon Sep 17 00:00:00 2001 From: Marcelo Shima Date: Mon, 10 Jun 2024 13:40:40 -0300 Subject: [PATCH 2/2] Update README.md Co-authored-by: Matt Raible --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a34dd2e..5ff47cc 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ GraalVM uses metadata to generate AOT compilation. A metadata is designed to support an specific version. Missing library range will be added as best bet and will fall back to latest version. -Metadata errors are only catch in runtime. It’s recommended to have cypress e2e tests enabled. +Metadata errors are only caught at runtime. It’s recommended to have Cypress e2e tests enabled to help identify issues during continuous integration. Refer to [GraalVM Reachability Metadata Repository](https://github.com/oracle/graalvm-reachability-metadata/)