Disable local cache for CI/CD testing

This commit is contained in:
Matthias Krack 2026-02-01 19:11:14 +01:00
parent 54614f0173
commit e1834e69bf
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ RUN echo "${CP2K_VERSION}" >/CP2K_VERSION
WORKDIR /opt/cp2k
# Build CP2K
RUN /bin/bash -o pipefail -c "source ./make_cp2k.sh -cv ${CP2K_VERSION}"
RUN /bin/bash -o pipefail -c "source ./make_cp2k.sh -cv ${CP2K_VERSION} -dlc"
###### Stage 2: Install CP2K ######

View file

@ -54,4 +54,4 @@ COPY . cp2k/
# Build CP2K dependencies
WORKDIR /opt/cp2k
RUN /bin/bash -o pipefail -c "source ./make_cp2k.sh -bd_only -cray -cv ${CP2K_VERSION}"
RUN /bin/bash -o pipefail -c "source ./make_cp2k.sh -bd_only -cray -cv ${CP2K_VERSION} -dlc"