-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed references. Now from config.yaml
- Loading branch information
Showing
19 changed files
with
151 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#- This docker file is not really to run the tools in docker. It's mostly for testing that the full install works | ||
# in linux | ||
FROM ubuntu:24.04 | ||
MAINTAINER Carsten Wulff <carsten@wulff.no> | ||
|
||
RUN ln -snf /usr/share/zoneinfo/$CONTAINER_TIMEZONE /etc/localtime && echo $CONTAINER_TIMEZONE > /etc/timezone | ||
|
||
RUN apt-get update && \ | ||
apt-get -y install sudo make \ | ||
openssh-server && \ | ||
apt-get autoremove -y && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN useradd -ms /bin/bash aicex | ||
RUN echo "aicex:aicex" | chpasswd && adduser aicex sudo | ||
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers | ||
|
||
RUN echo "X11UseLocalhost no\n" >> /etc/ssh/sshd_config | ||
|
||
RUN echo "set num_threads=8\nset ngbehavior=hsa\nset ng_nomodcheck\n" >> /home/aicex/.spiceinit | ||
|
||
EXPOSE 22 | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
WORKDIR /opt/ | ||
RUN sudo chown aicex:aicex /opt | ||
USER aicex | ||
|
||
|
||
#- If you want to do a fresh install, comment out the line below | ||
#ARG STEP11=false | ||
|
||
COPY tests tests | ||
WORKDIR /opt/tests | ||
|
||
ENV LD_LIBRARY_PATH=/opt/eda/lib | ||
ENV PATH=/opt/eda/bin:$HOME/.local/bin:$PATH | ||
|
||
#RUN make requirements | ||
#RUN make tt | ||
#RUN make eda_compile | ||
#RUN sudo make eda_install | ||
#RUN python3 -m pip install matplotlib numpy click svgwrite pyyaml pandas tabulate wheel setuptools tikzplotlib | ||
#RUN source install_open_pdk.sh | ||
#RUN sudo rm -rf skywater-pdk | ||
#RUN sudo rm -rf open_pdk | ||
|
||
WORKDIR /home/aicex | ||
RUN mkdir /home/aicex/.ssh | ||
|
||
ENTRYPOINT sudo service ssh restart && tail -f /dev/null | ||
#CMD ["/usr/bin/sudo", "/usr/sbin/sshd", "-D", "-o", "ListenAddress=0.0.0.0"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ciccheatgen
deleted from
3961fe
Submodule ciccreator
deleted from
9ab65a
Submodule cicpy
deleted from
3eccfa
Submodule cicsim
updated
6 files
+3 −1 | Makefile | |
+3 −2 | cicsim/cicsim.py | |
+53 −38 | cicsim/cmdrunng.py | |
+2 −2 | cicsim/cmdwave.py | |
+3 −2 | cicsim/wavebrowser.py | |
+13 −7 | cicsim/wavefiles.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cpdk
updated
3 files
+0 −1 | design/cic/cap.sym | |
+27 −0 | design/cic/sc.sym | |
+24 −0 | design/cic/tg.sym |
Submodule rply_bias_sky130nm
deleted from
329736
Submodule sun_pll_sky130nm
deleted from
390730
Submodule sun_sar9b_sky130nm
deleted from
47259c
Submodule sun_tr_sky130nm
deleted from
ccd959
Submodule sun_trb_sky130nm
deleted from
a3838e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters