Skip to content

Commit

Permalink
feat(gds): use .oas from user projects when available
Browse files Browse the repository at this point in the history
  • Loading branch information
htfab committed Jan 13, 2025
1 parent df7e3e8 commit 23676e7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/gds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,22 @@ jobs:
pdk_version: ${{ env.SKY130_PDK_VERSION }}
pdk_root: ${{ env.PDK_ROOT }}

- name: Install KLayout
run: |
wget https://github.com/htfab/klayout/releases/download/v0.29.10/klayout_0.29.10-1_amd64.deb
sudo apt-get install -y ./klayout_0.29.10-1_amd64.deb
pip install klayout==0.29.10
- name: Convert OAS artifacts to GDS
working-directory: projects
run: |
for project in tt_um_*; do
if [ -e "$project/$project.oas" ]; then
echo "Converting $project/$project.oas"
strm2gds "$project/$project.oas" "$project/$project.gds"
fi
done
# Patch all digital projects to work around the poly density issue
- name: Patch projects for poly density issue
working-directory: projects
Expand Down

0 comments on commit 23676e7

Please sign in to comment.