Skip to content

Commit

Permalink
[build] fix jenkins dockerfil
Browse files Browse the repository at this point in the history
  • Loading branch information
the-hampel committed May 27, 2024
1 parent 024ad37 commit 6ce1e7b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Docker/jenkins_ci_dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Docker/openmpi_dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6ce1e7b

Please sign in to comment.