File tree 1 file changed +36
-2
lines changed
1 file changed +36
-2
lines changed Original file line number Diff line number Diff line change 60
60
objects
61
61
reports
62
62
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
+
64
98
drc :
65
99
needs : gds
66
100
runs-on : ubuntu-22.04
79
113
run : |
80
114
wget https://www.klayout.org/downloads/Ubuntu-22/klayout_0.29.4-1_amd64.deb
81
115
sudo apt-get install -y ./klayout_0.29.4-1_amd64.deb
82
-
116
+
83
117
- name : Run DRC
84
118
run : |
85
119
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
You can’t perform that action at this time.
0 commit comments