mirror of
https://github.com/onestardao/WFGY.git
synced 2026-04-28 11:40:07 +00:00
13 lines
280 B
Bash
13 lines
280 B
Bash
# reproduce.sh
|
|
|
|
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
python verify_manifest.py
|
|
pip install -e .
|
|
wfgy init
|
|
wfgy evaluate --suite all
|
|
wfgy evaluate --suite efficiency
|
|
wfgy report --format html --output wfgy_results/report.html
|
|
|
|
echo "SUCCESS: reproduction complete."
|