Skip to content

Commit 8941b5d

Browse files
committed
fix: poly density workaround not applied to newer project using pdk.json
1 parent d81fa67 commit 8941b5d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/gds.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ jobs:
8181
# Skip projects that were not built with OpenLane2 or LibreLane (e.g. analog and mixed-signal projects)
8282
if [[ "$(jq -r '.openlane_version' $project/commit_id.json)" != "OpenLane2 2"* ]] && \
8383
[[ "$(jq -r '.flow_version' $project/commit_id.json)" != "OpenLane2 2"* ]] && \
84-
[[ "$(jq -r '.flow_version' $project/commit_id.json)" != "LibreLane "* ]]; then
84+
[[ "$(jq -r '.flow_version' $project/commit_id.json)" != "LibreLane "* ]] && \
85+
( [ -f $project/pdk.json ] && [[ "$(jq -r '.FLOW_NAME' $project/pdk.json)" != "LibreLane" ]]); then
8586
continue
8687
fi
8788

0 commit comments

Comments
 (0)