about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAspen Smith <root@gws.fyi>2023-12-20T16·12-0500
committerclbot <clbot@tvl.fyi>2023-12-20T18·04+0000
commitc2362319106fd7987ac6d8d640e74d2ca71b6c81 (patch)
tree1c6082dcb877e531428df2d1255f48195e8a8b31
parent9c1358fe44d368904b2cf75e308444dffefdb3eb (diff)
chore(tvix): Run criterion benchmarks for the whole workspace r/7230
Run criterion benchmarks (via `cargo bench`) for the *whole tvix
workspace*, not just `//tvix/eval`, and report the results to
windtunnel.

Change-Id: I9235c3c166ed9121f35c5bb4c46d59dc1f4c4055
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10382
Tested-by: BuildkiteCI
Autosubmit: grfn <grfn@gws.fyi>
Reviewed-by: flokli <flokli@flokli.de>
-rwxr-xr-xtvix/scripts/bench-windtunnel.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/scripts/bench-windtunnel.sh b/tvix/scripts/bench-windtunnel.sh
index 396357ebca..aa359a8a82 100755
--- a/tvix/scripts/bench-windtunnel.sh
+++ b/tvix/scripts/bench-windtunnel.sh
@@ -5,8 +5,8 @@
 
 set -euo pipefail
 
-echo "Running benchmarks for tvix/eval..."
-pushd "$(dirname "$(dirname "$0")")/eval"
+echo "Running benchmarks for tvix..."
+pushd "$(dirname "$(dirname "$0")")"
 cargo bench
 windtunnel-cli report -f criterion-rust .
 popd