Skip to content

Commit 921b2d4

Browse files
committed
[build] add ctseg to docker images for testing
1 parent 2f4e92c commit 921b2d4

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
@@ -102,6 +102,12 @@ RUN cd /source && git clone -b 3.3.x --depth 1 https://github.com/TRIQS/cthyb.gi
102102
&& cmake ../ \
103103
&& make -j$NCORES && ctest -j$NCORES && make install
104104

105+
# ctseg
106+
RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/ctseg.git \
107+
&& cd ctseg && mkdir -p build && cd build \
108+
&& cmake ../ \
109+
&& make -j$NCORES && ctest -j$NCORES && make install
110+
105111
# hubbardI
106112
RUN cd /source && git clone -b 3.3.x --depth 1 https://github.com/TRIQS/hubbardI.git \
107113
&& 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 3.3.x --depth 1 https://github.com/TRIQS/cthyb.gi
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 3.3.x --depth 1 https://github.com/TRIQS/maxent.git maxent.src \
192198
&& mkdir -p maxent.build && cd maxent.build \

0 commit comments

Comments
 (0)