Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prototype for w2dyn_cthyb #65

Draft
wants to merge 3 commits into
base: unstable
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add w2dynamics to Dockerfiles
hmenke committed Nov 10, 2023
commit cd069a3c65bfdcd997ee55662d555705bcd09b92
6 changes: 6 additions & 0 deletions Docker/github_ci_dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
6 changes: 6 additions & 0 deletions Docker/jenkins_ci_dockerfile
Original file line number Diff line number Diff line change
@@ -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 \