Skip to content

Commit 9764e18

Browse files
committed
ci(gds): add GL verification
1 parent 50e699d commit 9764e18

File tree

1 file changed

+36
-2
lines changed

1 file changed

+36
-2
lines changed

.github/workflows/gds.yaml

+36-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,41 @@ jobs:
6060
objects
6161
reports
6262
results
63-
63+
64+
gl-verification:
65+
needs: gds
66+
runs-on: ubuntu-22.04
67+
steps:
68+
- name: checkout repo
69+
uses: actions/checkout@v4
70+
with:
71+
submodules: recursive
72+
73+
- name: Download GDS
74+
uses: actions/download-artifact@v4
75+
with:
76+
name: gds
77+
78+
# Install iverilog, cocotb
79+
- name: install oss-cad-suite
80+
uses: YosysHQ/setup-oss-cad-suite@v3
81+
with:
82+
version: '2024-07-16'
83+
github-token: ${{ secrets.GITHUB_TOKEN }}
84+
85+
- name: GL verification
86+
working-directory: test
87+
run: |
88+
make clean test_mux_gl
89+
# make will return success even if the test fails, so check for failure in the results.xml
90+
! grep failure results.xml
91+
92+
- name: Publish VCD
93+
uses: actions/upload-artifact@v4
94+
with:
95+
name: vcd
96+
path: test/test_mux.vcd
97+
6498
drc:
6599
needs: gds
66100
runs-on: ubuntu-22.04
@@ -79,7 +113,7 @@ jobs:
79113
run: |
80114
wget https://www.klayout.org/downloads/Ubuntu-22/klayout_0.29.4-1_amd64.deb
81115
sudo apt-get install -y ./klayout_0.29.4-1_amd64.deb
82-
116+
83117
- name: Run DRC
84118
run: |
85119
klayout -b -r ./IHP-Open-PDK/ihp-sg13g2/libs.tech/klayout/tech/drc/sg13g2.lydrc -rd cell=tt_top ./results/ihp-sg13g2/tt-chip/base/6_final.gds

0 commit comments

Comments
 (0)