Skip to content

Commit

Permalink
[build] use 3.2.x branch for jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
the-hampel committed Feb 28, 2024
1 parent 1f96273 commit 2c9febc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Create and publish Docker images

on:
push: { branches: [ 3.2.x ] }
pull_request: { branches: [ 3.2.x ] }
pull_request:
branches: [ 3.2.x ]
paths: ['Docker/**']
workflow_call:
workflow_dispatch:

Expand Down
6 changes: 3 additions & 3 deletions Docker/jenkins_ci_dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ ARG APPNAME=solid_dmft

# 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.2.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.2.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.2.x --depth 1 https://github.com/TRIQS/hartree_fock.git hartree.src \
&& mkdir -p hartree.build && cd hartree.build \
&& cmake ../hartree.src \
&& make install
Expand Down

0 comments on commit 2c9febc

Please sign in to comment.