d9ac36d307
Change-Id: I6d9435c6710ce086aaedb2c1dc634b73a19f476c Reviewed-on: https://cl.tvl.fyi/c/depot/+/10249 Tested-by: BuildkiteCI Autosubmit: grfn <grfn@gws.fyi> Reviewed-by: grfn <grfn@gws.fyi>
21 lines
734 B
Bash
Executable file
21 lines
734 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash ../.. -A tvix.shell
|
|
|
|
# Benchmark script that runs inside the Windtunnel build agent
|
|
|
|
set -euo pipefail
|
|
|
|
echo "Running benchmarks for tvix/eval..."
|
|
pushd "$(dirname "$(dirname "$0")")/eval"
|
|
cargo bench
|
|
windtunnel-cli report -f criterion-rust .
|
|
popd
|
|
|
|
echo "Running tvix macrobenchmarks..."
|
|
pushd "$(dirname "$(dirname "$0")")"
|
|
cargo build --release --bin tvix
|
|
hyperfine --export-json ./results.json \
|
|
-n 'eval-nixpkgs-hello' "target/release/tvix -E '(import ../../nixpkgs {}).hello.outPath'" \
|
|
-n 'eval-nixpkgs-cross-hello' "target/release/tvix -E '(import ../../nixpkgs {}).pkgsCross.aarch64-multiplatform.hello.outPath'"
|
|
windtunnel-cli report -f hyperfine-json ./results.json
|
|
popd
|