11 lines
260 B
Bash
11 lines
260 B
Bash
|
#!/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 .
|