62fae6b2bd
Some checks failed
release / build-base (push) Successful in 8m7s
release / build-digital-ator (push) Successful in 17m57s
release / build-digital-icarus (push) Successful in 18m4s
release / build-digital-heavy (push) Successful in 18m7s
release / build-analog-xk (push) Successful in 20m35s
release / build-analog-xm (push) Successful in 20m39s
release / build-heavy (push) Successful in 21m26s
release / build-chipathon-tools (push) Failing after 4m2s
release / build-analog-heavy (push) Successful in 12m55s
18 lines
531 B
Docker
18 lines
531 B
Docker
ARG BASE_IMG=heavy-desktop
|
|
FROM $BASE_IMG as chipathon-tools
|
|
|
|
# Add scripts
|
|
COPY --chown=designer:designer --chmod=755 stacks/chipathon-tools/scripts/global-variables.sh .
|
|
|
|
COPY --chown=designer:designer --chmod=755 stacks/chipathon-tools/scripts/install-open-pdks.sh .
|
|
RUN ./install-open-pdks.sh
|
|
|
|
COPY --chown=designer:designer --chmod=755 stacks/chipathon-tools/scripts/* .
|
|
RUN ./patch-open-pdks-gf180.sh
|
|
RUN ./patch-open-pdks-sky130.sh
|
|
|
|
RUN rm *.sh
|
|
|
|
# Initialize the enviroment keeping container alive
|
|
CMD ["sleep", "infinity"]
|