diff options
author | Aspen Smith <root@gws.fyi> | 2023-12-20T16·12-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-12-20T18·04+0000 |
commit | c2362319106fd7987ac6d8d640e74d2ca71b6c81 (patch) | |
tree | 1c6082dcb877e531428df2d1255f48195e8a8b31 /tvix/scripts | |
parent | 9c1358fe44d368904b2cf75e308444dffefdb3eb (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>
Diffstat (limited to 'tvix/scripts')
-rwxr-xr-x | tvix/scripts/bench-windtunnel.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/scripts/bench-windtunnel.sh b/tvix/scripts/bench-windtunnel.sh index 396357ebcafe..aa359a8a8206 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 |