blob: 678a37e2a314f9f335d2c4328098860f7f7023e5 (
plain) (
tree)
|
|
#!/usr/bin/env bash
# Benchmark script that runs inside the Windtunnel build agent
set -euo pipefail
echo "Running benchmarks for tvix/eval..."
cd tvix/eval
docker run --rm -v "$(pwd):/app" -w /app rust cargo bench
windtunnel-cli report -f criterion-rust .
|