Skip to content

Commit d0cafb5

Browse files
htfaburish
htfab
authored andcommitted
feat(gds): use .oas from user projects when available
1 parent d607334 commit d0cafb5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/gds.yaml

+7-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,13 @@ jobs:
8585
brotli -jd $project/$project.gds.br
8686
fi
8787
88-
python ../sky130_density_fix/replace_decap.py --design $project --user-gds $project/$project.gds --replacement-gds ../sky130_density_fix/sky130_ef_sc_hd__newfill_12.gds | tee -a ../tt-multiplexer/ol2/tt_top/gds/replace_decap.log
88+
if [ -f $project/$project.gds ]; then
89+
python ../sky130_density_fix/replace_decap.py --design $project --user-gds $project/$project.gds --replacement-gds ../sky130_density_fix/sky130_ef_sc_hd__newfill_12.gds | tee -a ../tt-multiplexer/ol2/tt_top/gds/replace_decap.log
90+
fi
91+
92+
if [ -f $project/$project.oas ]; then
93+
python ../sky130_density_fix/replace_decap.py --design $project --user-gds $project/$project.oas --replacement-gds ../sky130_density_fix/sky130_ef_sc_hd__newfill_12.gds | tee -a ../tt-multiplexer/ol2/tt_top/gds/replace_decap.log
94+
fi
8995
done
9096
9197
# run OpenLane to build the GDS

0 commit comments

Comments
 (0)