From bf77c5cb8e339eaa29e5a2337fd24a52d9f49fc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Sch=C3=BCtt?= Date: Sat, 15 Mar 2025 16:35:14 +0100 Subject: [PATCH] Docker: Fix builds of GCC and minimal tests --- cmake/cmake_cp2k.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmake/cmake_cp2k.sh b/cmake/cmake_cp2k.sh index 7b5ed6347b..318b8c7b34 100755 --- a/cmake/cmake_cp2k.sh +++ b/cmake/cmake_cp2k.sh @@ -116,6 +116,9 @@ elif [[ "${PROFILE}" == "ubuntu" ]] && [[ "${VERSION}" == "ssmp" ]]; then -DCP2K_USE_MPI=OFF \ -DCP2K_USE_SPGLIB=OFF \ -DCP2K_USE_VORI=OFF \ + -DCP2K_USE_DFTD4=OFF \ + -DCP2K_USE_DEEPMD=OFF \ + -DCP2K_USE_TREXIO=OFF \ -Werror=dev \ .. |& tee ./cmake.log CMAKE_EXIT_CODE=$? @@ -134,6 +137,9 @@ elif [[ "${PROFILE}" == "minimal" ]] && [[ "${VERSION}" == "ssmp" ]]; then -DCP2K_USE_MPI=OFF \ -DCP2K_USE_SPGLIB=OFF \ -DCP2K_USE_VORI=OFF \ + -DCP2K_USE_DFTD4=OFF \ + -DCP2K_USE_DEEPMD=OFF \ + -DCP2K_USE_TREXIO=OFF \ -Werror=dev \ .. |& tee ./cmake.log CMAKE_EXIT_CODE=$?