All checks were successful
release / build-base (push) Successful in 25m6s
release / build-digital-icarus (push) Successful in 2h32m38s
release / build-digital-ator (push) Successful in 2h35m44s
release / build-analog-xk (push) Successful in 2h39m15s
release / build-analog-xm (push) Successful in 2h39m19s
release / build-analog-heavy (push) Successful in 2h39m23s
release / build-digital-heavy (push) Successful in 52m52s
release / build-heavy (push) Successful in 53m13s
release / build-chipathon-tools (push) Successful in 2h7m12s
36 lines
1014 B
Bash
36 lines
1014 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export OPEN_PDKS_VERSION="dd7771c384ed36b91a25e9f8b314355fc26561be"
|
|
export SCRIPT_DIR=$PWD
|
|
|
|
#pip install git+https://github.com/gdsfactory/skywater130.git git+https://github.com/gdsfactory/gf180.git --upgrade --break-system-packages
|
|
pip install gf180 --upgrade --break-system-packages
|
|
pip install sky130 --upgrade --break-system-packages
|
|
|
|
######################
|
|
# INSTALL GF180MCU PDK
|
|
######################
|
|
|
|
volare enable "${OPEN_PDKS_VERSION}" --pdk gf180mcu
|
|
|
|
rm -rf $PDK_ROOT/volare/gf180mcu/versions/*/gf180mcuA
|
|
rm -rf $PDK_ROOT/volare/gf180mcu/versions/*/gf180mcuB
|
|
rm -rf $PDK_ROOT/volare/gf180mcu/versions/*/gf180mcuD
|
|
rm -rf $PDK_ROOT/gf180mcuA
|
|
rm -rf $PDK_ROOT/gf180mcuB
|
|
rm -rf $PDK_ROOT/gf180mcuD
|
|
|
|
####################
|
|
# INSTALL SKY130 PDK
|
|
####################
|
|
|
|
volare enable "${OPEN_PDKS_VERSION}" --pdk sky130
|
|
|
|
# ADD PCELL SUPPORT
|
|
|
|
# remove version sky130B to save space (efabless TO use mostly sky130A)
|
|
rm -rf "$PDK_ROOT"/volare/sky130/versions/*/sky130B
|
|
rm -rf "$PDK_ROOT"/sky130B
|