mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 14:15:19 -04:00
Drop spglib in gcc8 test
This commit is contained in:
parent
c107214681
commit
0cb0118aa4
7 changed files with 9 additions and 0 deletions
|
|
@ -53,6 +53,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libxc=system \
|
||||
--with-libxsmm=install \
|
||||
--with-libvori=install \
|
||||
--with-spglib=install \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libxc=system \
|
||||
--with-libxsmm=install \
|
||||
--with-libvori=install \
|
||||
--with-spglib=install \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libxc=system \
|
||||
--with-libxsmm=install \
|
||||
--with-libvori=install \
|
||||
--with-spglib=install \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libxc=install \
|
||||
--with-libxsmm=install \
|
||||
--with-libvori=install \
|
||||
--with-spglib=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libxc=system \
|
||||
--with-libxsmm=install \
|
||||
--with-libvori=install \
|
||||
--with-spglib=install \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libxc=system \
|
||||
--with-libxsmm=install \
|
||||
--with-libvori=no \
|
||||
--with-spglib=install \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -59,6 +59,7 @@ def main() -> None:
|
|||
base_image="ubuntu:20.04",
|
||||
gcc_version=gcc_version,
|
||||
libgrpp=False,
|
||||
spglib=False,
|
||||
)
|
||||
)
|
||||
# Skip some tests because of bug in LDA_C_PMGB06 functional in libxc <5.2.0.
|
||||
|
|
@ -399,6 +400,7 @@ def toolchain_ubuntu_nompi(
|
|||
gcc_version: int = 12,
|
||||
libgrpp: bool = True,
|
||||
libvori: bool = True,
|
||||
spglib: bool = True,
|
||||
) -> str:
|
||||
output = rf"""
|
||||
FROM {base_image}
|
||||
|
|
@ -441,6 +443,7 @@ RUN ln -sf /usr/bin/gcc-{gcc_version} /usr/local/bin/gcc && \
|
|||
with_libxc=("system" if gcc_version > 8 else "install"),
|
||||
with_libxsmm="install",
|
||||
with_libvori=("install" if libvori else "no"),
|
||||
with_spglib=("install" if spglib else "no"),
|
||||
)
|
||||
return output
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue