Skip to content

Commit

Permalink
Add w2dynamics to Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
hmenke committed Nov 10, 2023
1 parent 7bc718e commit cd069a3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Docker/github_ci_dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/hartr
&& cmake ../hartree.src \
&& make -j$NCORES && make install

# w2dynamics solver
RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/w2dynamics_interface.git w2dyn.src \
&& mkdir -p w2dyn.build && cd w2dyn.build \
&& cmake ../w2dyn.src \
&& make -j$NCORES && make install

# maxent needed for doc build
RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/maxent.git maxent.src \
&& mkdir -p maxent.build && cd maxent.build \
Expand Down
6 changes: 6 additions & 0 deletions Docker/jenkins_ci_dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ RUN cd / && git clone -b unstable --depth 1 https://github.com/TRIQS/hartree_foc
&& cmake ../hartree.src \
&& make install

# w2dynamics solver
RUN cd / && git clone -b unstable --depth 1 https://github.com/TRIQS/w2dynamics_interface.git w2dyn.src \
&& mkdir -p w2dyn.build && cd w2dyn.build \
&& cmake ../w2dyn.src \
&& make -j$NCORES && make install

# maxent
RUN cd / && git clone -b unstable --depth 1 https://github.com/TRIQS/maxent.git maxent.src \
&& mkdir -p maxent.build && cd maxent.build \
Expand Down

0 comments on commit cd069a3

Please sign in to comment.