02bec29f55
All checks were successful
release / build-base (push) Successful in 5m15s
release / build-digital-icarus (push) Successful in 36m2s
release / build-digital-heavy (push) Successful in 37m16s
release / build-digital-ator (push) Successful in 40m43s
release / build-analog-xk (push) Successful in 41m32s
release / build-analog-heavy (push) Successful in 44m10s
release / build-analog-xm (push) Successful in 44m23s
release / build-heavy (push) Successful in 44m25s
release / build-chipathon-tools (push) Successful in 41m24s
36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export OPEN_PDKS_VERSION="e0f692f46654d6c7c99fc70a0c94a080dab53571"
|
|
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/*/gf180mcuC ## Some day...
|
|
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
|