Skip to content

Commit c25dd22

Browse files
committed
[build] add ctseg to docker images for testing
1 parent 99dc18f commit c25dd22

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

Docker/github_ci_dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,12 @@ RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/cthyb
103103
&& cmake ../ \
104104
&& make -j$NCORES && ctest -j$NCORES && make install
105105

106+
# ctseg
107+
RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/ctseg.git \
108+
&& cd ctseg && mkdir -p build && cd build \
109+
&& cmake ../ \
110+
&& make -j$NCORES && ctest -j$NCORES && make install
111+
106112
# hubbardI
107113
RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/hubbardI.git \
108114
&& cd hubbardI && mkdir -p build && cd build \

Docker/openmpi_dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,12 @@ RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/cthyb
187187
&& cmake ../cthyb.src \
188188
&& make -j$NCORES && ctest -j$NCORES && make install
189189

190+
# ctseg
191+
RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/ctseg.git ctseg.src \
192+
&& mkdir -p ctseg.build && cd ctseg.build \
193+
&& cmake ../ctseg.src \
194+
&& make -j$NCORES && ctest -j$NCORES && make install
195+
190196
# maxent
191197
RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/maxent.git maxent.src \
192198
&& mkdir -p maxent.build && cd maxent.build \

0 commit comments

Comments
 (0)