From 4c641c8f65a6eb2302ff3ffbe52f60bdbcaa1e1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Garillot?= <4142+huitseeker@users.noreply.github.com> Date: Fri, 22 Dec 2023 14:18:47 -0500 Subject: [PATCH] chore: Repair fibonacci bench (#1002) - dtolnay/rust-toolchain adds cargo to the GITHUB_PATH, which isn't carried to the justfile environment apparently: https://github.com/dtolnay/rust-toolchain/blob/be73d7920c329f220ce78e0234b8f96b7ae60248/action.yml#L66C16-L66C49 - Added PATH settings to the bench environment file to improve its usability Closes #1001 --- benches/bench.env | 3 +++ 1 file changed, 3 insertions(+) diff --git a/benches/bench.env b/benches/bench.env index b59c73e77a..ff1d8c85e2 100644 --- a/benches/bench.env +++ b/benches/bench.env @@ -1,3 +1,6 @@ +# cargo config +PATH="${CARGO_HOME:-$HOME/.cargo}/bin:$PATH" + # Lurk config LURK_PERF=max-parallel-simple LURK_RC=100,600