Skip to content
Snippets Groups Projects
Commit 70c8ac62 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Deps] remove PYNQ-HelloWorld

parent df6ba0d4
No related branches found
No related tags found
No related merge requests found
...@@ -55,8 +55,6 @@ RUN git clone https://github.com/rogersce/cnpy.git /workspace/cnpy ...@@ -55,8 +55,6 @@ RUN git clone https://github.com/rogersce/cnpy.git /workspace/cnpy
RUN git clone https://github.com/Xilinx/finn-hlslib.git /workspace/finn-hlslib RUN git clone https://github.com/Xilinx/finn-hlslib.git /workspace/finn-hlslib
# PyVerilator # PyVerilator
RUN git clone https://github.com/maltanar/pyverilator /workspace/pyverilator RUN git clone https://github.com/maltanar/pyverilator /workspace/pyverilator
# PYNQ-HelloWorld
RUN git clone https://github.com/maltanar/PYNQ-HelloWorld.git /workspace/PYNQ-HelloWorld
# oh-my-xilinx # oh-my-xilinx
RUN git clone https://bitbucket.org/maltanar/oh-my-xilinx.git /workspace/oh-my-xilinx RUN git clone https://bitbucket.org/maltanar/oh-my-xilinx.git /workspace/oh-my-xilinx
...@@ -70,7 +68,6 @@ RUN pip install pytest-parallel ...@@ -70,7 +68,6 @@ RUN pip install pytest-parallel
ENV PYTHONPATH "${PYTHONPATH}:/workspace/finn/src" ENV PYTHONPATH "${PYTHONPATH}:/workspace/finn/src"
ENV PYTHONPATH "${PYTHONPATH}:/workspace/pyverilator" ENV PYTHONPATH "${PYTHONPATH}:/workspace/pyverilator"
ENV PYNQSHELL_PATH "/workspace/PYNQ-HelloWorld/boards"
ENV VIVADO_IP_CACHE "$BUILD_PATH/vivado_ip_cache" ENV VIVADO_IP_CACHE "$BUILD_PATH/vivado_ip_cache"
ENV PATH "${PATH}:/workspace/oh-my-xilinx" ENV PATH "${PATH}:/workspace/oh-my-xilinx"
ENV OHMYXILINX "/workspace/oh-my-xilinx" ENV OHMYXILINX "/workspace/oh-my-xilinx"
......
...@@ -83,8 +83,6 @@ RUN git clone https://github.com/rogersce/cnpy.git /workspace/cnpy ...@@ -83,8 +83,6 @@ RUN git clone https://github.com/rogersce/cnpy.git /workspace/cnpy
RUN git clone https://github.com/Xilinx/finn-hlslib.git /workspace/finn-hlslib RUN git clone https://github.com/Xilinx/finn-hlslib.git /workspace/finn-hlslib
# PyVerilator # PyVerilator
RUN git clone https://github.com/maltanar/pyverilator /workspace/pyverilator RUN git clone https://github.com/maltanar/pyverilator /workspace/pyverilator
# PYNQ-HelloWorld
RUN git clone https://github.com/maltanar/PYNQ-HelloWorld.git /workspace/PYNQ-HelloWorld
# oh-my-xilinx # oh-my-xilinx
RUN git clone https://bitbucket.org/maltanar/oh-my-xilinx.git /workspace/oh-my-xilinx RUN git clone https://bitbucket.org/maltanar/oh-my-xilinx.git /workspace/oh-my-xilinx
...@@ -92,7 +90,6 @@ RUN git clone https://bitbucket.org/maltanar/oh-my-xilinx.git /workspace/oh-my-x ...@@ -92,7 +90,6 @@ RUN git clone https://bitbucket.org/maltanar/oh-my-xilinx.git /workspace/oh-my-x
# at /workspace/finn -- see run-docker.sh for an example of how to do this. # at /workspace/finn -- see run-docker.sh for an example of how to do this.
ENV PYTHONPATH "${PYTHONPATH}:/workspace/finn/src" ENV PYTHONPATH "${PYTHONPATH}:/workspace/finn/src"
ENV PYTHONPATH "${PYTHONPATH}:/workspace/pyverilator" ENV PYTHONPATH "${PYTHONPATH}:/workspace/pyverilator"
ENV PYNQSHELL_PATH "/workspace/PYNQ-HelloWorld/boards"
ENV PATH "${PATH}:/workspace/oh-my-xilinx:/home/$UNAME/.local/bin" ENV PATH "${PATH}:/workspace/oh-my-xilinx:/home/$UNAME/.local/bin"
ENV OHMYXILINX "/workspace/oh-my-xilinx" ENV OHMYXILINX "/workspace/oh-my-xilinx"
......
...@@ -12,11 +12,10 @@ gecho () { ...@@ -12,11 +12,10 @@ gecho () {
# checkout the correct dependency repo commits # checkout the correct dependency repo commits
# the repos themselves are cloned in the Dockerfile # the repos themselves are cloned in the Dockerfile
BREVITAS_COMMIT=85e28ac2e6570e91216d042212a7d1a28ec6e394 BREVITAS_COMMIT=98017609725a6e425e1cdeffb13f175ce815939c
CNPY_COMMIT=4e8810b1a8637695171ed346ce68f6984e585ef4 CNPY_COMMIT=4e8810b1a8637695171ed346ce68f6984e585ef4
HLSLIB_COMMIT=cfafe11a93b79ab1af7529d68f08886913a6466e HLSLIB_COMMIT=cfafe11a93b79ab1af7529d68f08886913a6466e
PYVERILATOR_COMMIT=c97a5ba41bbc7c419d6f25c74cdf3bdc3393174f PYVERILATOR_COMMIT=c97a5ba41bbc7c419d6f25c74cdf3bdc3393174f
PYNQSHELL_COMMIT=bf281fc3a44eca29efbcbefd63f1196d82c7c255
OMX_COMMIT=1bae737669901e762f581af73348332b5c4b2ada OMX_COMMIT=1bae737669901e762f581af73348332b5c4b2ada
gecho "Setting up known-good commit versions for FINN dependencies" gecho "Setting up known-good commit versions for FINN dependencies"
...@@ -37,10 +36,6 @@ git -C /workspace/finn-hlslib checkout $HLSLIB_COMMIT --quiet ...@@ -37,10 +36,6 @@ git -C /workspace/finn-hlslib checkout $HLSLIB_COMMIT --quiet
gecho "PyVerilator @ $PYVERILATOR_COMMIT" gecho "PyVerilator @ $PYVERILATOR_COMMIT"
git -C /workspace/pyverilator pull --quiet git -C /workspace/pyverilator pull --quiet
git -C /workspace/pyverilator checkout $PYVERILATOR_COMMIT --quiet git -C /workspace/pyverilator checkout $PYVERILATOR_COMMIT --quiet
# PYNQ-HelloWorld
gecho "PYNQ shell @ $PYNQSHELL_COMMIT"
git -C /workspace/PYNQ-HelloWorld pull --quiet
git -C /workspace/PYNQ-HelloWorld checkout $PYNQSHELL_COMMIT --quiet
# oh-my-xilinx # oh-my-xilinx
gecho "oh-my-xilinx @ $OMX_COMMIT" gecho "oh-my-xilinx @ $OMX_COMMIT"
git -C /workspace/oh-my-xilinx pull --quiet git -C /workspace/oh-my-xilinx pull --quiet
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment