Skip to content

Commit e08e78a

Browse files
committed
Fix OpenLane stage IDs and add manual trigger
Made-with: Cursor
1 parent 16ea1bf commit e08e78a

8 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/workflows/asic-1-synthesis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
bash -lc "openlane --version && \
6161
openlane --run-tag \"${RUN_TAG}\" \
6262
--pdk-root \"${PDK_ROOT}\" \
63-
--to synthesis \
63+
--to Yosys.Synthesis \
6464
\"${GITHUB_WORKSPACE}/asic/config.tcl\""
6565
6666
- name: Cache OpenLane run (post-synthesis)

.github/workflows/asic-2-floorplan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ jobs:
6666
bash -lc "openlane --version && \
6767
openlane --run-tag \"${RUN_TAG}\" \
6868
--pdk-root \"${PDK_ROOT}\" \
69-
--from synthesis \
70-
--to floorplan \
69+
--from Yosys.Synthesis \
70+
--to OpenROAD.GeneratePDN \
7171
\"${GITHUB_WORKSPACE}/asic/config.tcl\""
7272
7373
- name: Cache OpenLane run (post-floorplan)

.github/workflows/asic-3-placement.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ jobs:
6666
bash -lc "openlane --version && \
6767
openlane --run-tag \"${RUN_TAG}\" \
6868
--pdk-root \"${PDK_ROOT}\" \
69-
--from floorplan \
70-
--to placement \
69+
--from OpenROAD.GeneratePDN \
70+
--to OpenROAD.DetailedPlacement \
7171
\"${GITHUB_WORKSPACE}/asic/config.tcl\""
7272
7373
- name: Cache OpenLane run (post-placement)

.github/workflows/asic-4-cts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ jobs:
6666
bash -lc "openlane --version && \
6767
openlane --run-tag \"${RUN_TAG}\" \
6868
--pdk-root \"${PDK_ROOT}\" \
69-
--from placement \
70-
--to cts \
69+
--from OpenROAD.DetailedPlacement \
70+
--to OpenROAD.ResizerTimingPostCTS \
7171
\"${GITHUB_WORKSPACE}/asic/config.tcl\""
7272
7373
- name: Cache OpenLane run (post-CTS)

.github/workflows/asic-5-routing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ jobs:
6666
bash -lc "openlane --version && \
6767
openlane --run-tag \"${RUN_TAG}\" \
6868
--pdk-root \"${PDK_ROOT}\" \
69-
--from cts \
70-
--to routing \
69+
--from OpenROAD.ResizerTimingPostCTS \
70+
--to OpenROAD.DetailedRouting \
7171
\"${GITHUB_WORKSPACE}/asic/config.tcl\""
7272
7373
- name: Cache OpenLane run (post-routing)

.github/workflows/asic-6-signoff.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ jobs:
6666
bash -lc "openlane --version && \
6767
openlane --run-tag \"${RUN_TAG}\" \
6868
--pdk-root \"${PDK_ROOT}\" \
69-
--from routing \
70-
--to signoff \
69+
--from OpenROAD.DetailedRouting \
70+
--to Checker.LVS \
7171
\"${GITHUB_WORKSPACE}/asic/config.tcl\""
7272
7373
- name: Cache OpenLane run (post-signoff)

.github/workflows/asic-7-gds.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ jobs:
6565
ghcr.io/efabless/openlane2:2.3.10 \
6666
bash -lc "openlane --version && \
6767
openlane --run-tag \"${RUN_TAG}\" \
68-
--pdk-root \"${PDK_ROOT}}\" \
69-
--from signoff \
70-
--to gds \
68+
--pdk-root \"${PDK_ROOT}\" \
69+
--from Checker.LVS \
70+
--to Misc.ReportManufacturability \
7171
\"${GITHUB_WORKSPACE}/asic/config.tcl\""
7272
7373
- name: Upload final GDSII artifacts

.github/workflows/asic-gds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: ASIC RTL-to-GDS
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [ main ]
67
pull_request:

0 commit comments

Comments
 (0)