3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-12-28 15:56:38 +00:00

Revert "Get rid of unnecessary file"

This reverts commit f9bee0464b.
This commit is contained in:
Gus Smith 2025-12-15 13:20:28 -08:00
parent f9bee0464b
commit 36fcd8fbc8

View file

@ -0,0 +1,19 @@
#!/bin/bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$SCRIPT_DIR"
FLOW_FILE="staged_sim_and_verif.sby"
# Clean previous runs so we always exercise the full staged flow.
rm -rf staged_sim_and_verif_stage_1_init staged_sim_and_verif_stage_1_fv staged_sim_and_verif_stage_2_init staged_sim_and_verif_stage_2_fv
run_task() {
python3 "$SBY_MAIN" -f "$FLOW_FILE" "$1"
}
run_task stage_1_init
run_task stage_1_fv
run_task stage_2_init
run_task stage_2_fv