diff --git a/Docker/jenkins_ci_dockerfile b/Docker/jenkins_ci_dockerfile index f626e0dc..82e0da4e 100644 --- a/Docker/jenkins_ci_dockerfile +++ b/Docker/jenkins_ci_dockerfile @@ -8,25 +8,25 @@ ENV OMP_NUM_THREADS=1 # install dfttools maxent hubbardI and HartreeFock # dft_tools -RUN cd / && git clone -b unstable --depth 1 https://github.com/TRIQS/dft_tools.git dft_tools.src \ +RUN cd / && git clone -b 3.3.x --depth 1 https://github.com/TRIQS/dft_tools.git dft_tools.src \ && mkdir -p dft_tools.build && cd dft_tools.build \ && cmake ../dft_tools.src \ && make -j4 install # hubbardI -RUN cd / && git clone -b unstable --depth 1 https://github.com/TRIQS/hubbardI.git hubbardI.src \ +RUN cd / && git clone -b 3.3.x --depth 1 https://github.com/TRIQS/hubbardI.git hubbardI.src \ && mkdir -p hubbardI.build && cd hubbardI.build \ && cmake ../hubbardI.src \ && make install # Hartree-Fock solver -RUN cd / && git clone -b unstable --depth 1 https://github.com/TRIQS/hartree_fock.git hartree.src \ +RUN cd / && git clone -b 3.3.x --depth 1 https://github.com/TRIQS/hartree_fock.git hartree.src \ && mkdir -p hartree.build && cd hartree.build \ && cmake ../hartree.src \ && make install # maxent -RUN cd / && git clone -b unstable --depth 1 https://github.com/TRIQS/maxent.git maxent.src \ +RUN cd / && git clone -b 3.3.x --depth 1 https://github.com/TRIQS/maxent.git maxent.src \ && mkdir -p maxent.build && cd maxent.build \ && cmake ../maxent.src \ && make install diff --git a/Docker/openmpi_dockerfile b/Docker/openmpi_dockerfile index 3ce9716e..0922aa71 100644 --- a/Docker/openmpi_dockerfile +++ b/Docker/openmpi_dockerfile @@ -228,7 +228,7 @@ RUN cd /source && git clone -b 3.3.x --depth 1 https://github.com/TRIQS/hartree_ && make -j$NCORES && ctest -j$NCORES && make install # download solid_dmft and install -RUN cd /source && git clone -b 3.3.x --depth 1 https://github.com/flatironinstitute/solid_dmft.git solid_dmft.src \ +RUN cd /source && git clone -b 3.3.x --depth 1 https://github.com/TRIQS/solid_dmft.git solid_dmft.src \ && mkdir -p solid_dmft.build && cd solid_dmft.build \ && cmake ../solid_dmft.src \ && make test && make install