diff options
author | Aspen Smith <root@gws.fyi> | 2023-12-14T19·48-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-12-14T19·52+0000 |
commit | 91b6c13f90bc25f581e0f8c92d0d9f358500d960 (patch) | |
tree | fa2706870fb7a895a69307b4249992cfe92b99eb /tvix/scripts/bench-windtunnel.sh | |
parent | 1d678bab5f760b9141feefeacf4a27f72ae1adbd (diff) |
fix(tvix): Remove errant backslash in benchmark script r/7221
Change-Id: I485986521fd4a25770f2a398896a0f672628df9f Reviewed-on: https://cl.tvl.fyi/c/depot/+/10365 Tested-by: BuildkiteCI Autosubmit: grfn <grfn@gws.fyi> Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix/scripts/bench-windtunnel.sh')
-rwxr-xr-x | tvix/scripts/bench-windtunnel.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/scripts/bench-windtunnel.sh b/tvix/scripts/bench-windtunnel.sh index 894d5ba97e0d..396357ebcafe 100755 --- a/tvix/scripts/bench-windtunnel.sh +++ b/tvix/scripts/bench-windtunnel.sh @@ -22,6 +22,6 @@ hyperfine --export-json ./results.json \ -n 'tvix-eval-depot-nixpkgs-hello' "target/release/tvix -E '(import ${depot_nixpkgs_path} {}).hello.outPath'" \ -n 'tvix-eval-depot-nixpkgs-cross-hello' "target/release/tvix -E '(import ${depot_nixpkgs_path} {}).pkgsCross.aarch64-multiplatform.hello.outPath'" \ -n 'tvix-eval-pinned-nixpkgs-hello' "target/release/tvix -E '(import ${pinned_nixpkgs_path} {}).hello.outPath'" \ - -n 'tvix-eval-pinned-nixpkgs-cross-hello' "target/release/tvix -E '(import ${pinned_nixpkgs_path} {}).pkgsCross.aarch64-multiplatform.hello.outPath'" \ + -n 'tvix-eval-pinned-nixpkgs-cross-hello' "target/release/tvix -E '(import ${pinned_nixpkgs_path} {}).pkgsCross.aarch64-multiplatform.hello.outPath'" windtunnel-cli report -f hyperfine-json ./results.json popd |