Skip to content

Commit 3ae5a82

Browse files
committed
refactor: streamline verilator API steps
1 parent 0d8ecd9 commit 3ae5a82

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

api/steps/verilator/03_build_api_step.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ async def handler(req, context):
1616
body = req.get("body") or {}
1717
data = {
1818
"jobs": body.get("jobs", 16),
19-
"cosim": body.get("cosim", False),
2019
"coverage": body.get("coverage", False),
2120
}
2221
await context.emit({"topic": "verilator.build", "data": data})

api/steps/verilator/05_run_api_step.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
config = {
55
"type": "api",
66
"name": "Verilator Complete Workflow",
7-
"description": "trigger complete verilator workflow",
7+
"description": "trigger complete verilator workflow: clean → verilog → build → sim",
88
"path": "/verilator/run",
99
"method": "POST",
1010
"emits": ["verilator.run"],
@@ -17,7 +17,7 @@ async def handler(req, context):
1717

1818
config = {
1919
"binary": body.get("binary", ""),
20-
"config": body.get("config", "sims.verilator.BuckyballToyBBSimConfig"),
20+
"config": body.get("config", "sims.verilator.BuckyballToyVerilatorConfig"),
2121
"jobs": body.get("jobs", "16"),
2222
"batch": body.get("batch", False),
2323
"coverage": body.get("coverage", False),

0 commit comments

Comments
 (0)