From 5b2d4692f6951881115478983aae43d4267ecfb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Garillot?= Date: Fri, 22 Dec 2023 13:42:53 -0500 Subject: [PATCH] chore: Repair fibonacci bench - 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