From d8f90cb6f4fdbac334ad505db9015fc12686a553 Mon Sep 17 00:00:00 2001 From: dltjrgh Date: Tue, 4 Nov 2025 13:54:33 +0900 Subject: [PATCH 1/2] adjust benchmark hyperlinks --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e923486..2c70eb4 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,8 @@ The following table shows the list of supported benchmarks and engines. | Benchmarks | Repository | | :--------- | :---------------------------------------------------------------------------------------- | -| `c` | C benchmarks in [kupl/starlab-benchmarks](https://github.com/kupl/starlab-benchmarks) | -| `ocaml` | OCaml benchmarks in [kupl/starlab-benchmarks](https://github.com/kupl/starlab-benchmarks) | +| `c` | C benchmarks in [kupl/starlab-benchmarks](https://github.com/kupl/starlab-benchmarks/tree/main/C) | +| `ocaml` | OCaml benchmarks in [kupl/starlab-benchmarks](https://github.com/kupl/starlab-benchmarks/tree/main/OCaml) | ### Engines From bbc867789aa091655f4291ff194a48b937679799 Mon Sep 17 00:00:00 2001 From: dltjrgh Date: Tue, 4 Nov 2025 14:34:19 +0900 Subject: [PATCH 2/2] fix small typos --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2c70eb4..f4fedf0 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,8 @@ The following table shows the list of supported benchmarks and engines. | Benchmarks | Repository | | :--------- | :---------------------------------------------------------------------------------------- | -| `c` | C benchmarks in [kupl/starlab-benchmarks](https://github.com/kupl/starlab-benchmarks/tree/main/C) | -| `ocaml` | OCaml benchmarks in [kupl/starlab-benchmarks](https://github.com/kupl/starlab-benchmarks/tree/main/OCaml) | +| `c` | C benchmarks in [kupl/starlab-benchmarks](https://github.com/kupl/starlab-benchmarks) | +| `ocaml` | OCaml benchmarks in [kupl/starlab-benchmarks](https://github.com/kupl/starlab-benchmarks) | ### Engines @@ -110,7 +110,7 @@ You can initialize an engine with the following 6 parameters: - `build_args`: arguments to pass to `docker build` command to fill `ARG` variables in the Dockerfile, e.g., `{"SOME_ARG": "some_value"}`. - `exec_commands`: list of commands to execute the engine, e.g., `["saver ...", "cp ..."]`, all commands are joined with `;`, in other words, all commands are executed and the return code of the last command is returned. -Note that, your dockerfile **MUST** gets the benchmark image as an argument and starts build from it, e.g., +Note that, your dockerfile **MUST** get the benchmark image as an argument and build from it, e.g., ```dockerfile ARG BENCHMARK_IMAGE