mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 10:33:49 +00:00
14 lines
350 B
Bash
14 lines
350 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
|
|
virtualenv --version
|
|
|
|
cargo build --profile profiling --bin gourgeist --features cli
|
|
|
|
hyperfine --warmup 1 --shell none --prepare "rm -rf target/venv-benchmark" \
|
|
"target/profiling/gourgeist -p 3.11 target/venv-benchmark" \
|
|
"virtualenv -p 3.11 --no-seed target/venv-benchmark"
|
|
|