Introduce another exception for GCC 8 test

We will have to drop most likely the support for GCC 8 when moving to CMake.
This commit is contained in:
Matthias Krack 2025-02-13 18:04:17 +01:00
parent f8bee9bf09
commit edb8529057
3 changed files with 4 additions and 2 deletions

View file

@ -42,6 +42,7 @@ RUN ./install_cp2k_toolchain.sh \
--mpi-mode=no \
--with-gcc=system \
--with-cmake=system \
--with-dbcsr=no \
--with-fftw=system \
--with-openblas=system \
--with-gsl=system \

View file

@ -517,6 +517,7 @@ RUN ln -sf /usr/bin/gcc-{gcc_version} /usr/local/bin/gcc && \
mpi_mode="no",
with_gcc="system",
with_cmake="system",
with_dbcsr="no",
with_fftw="system",
with_openblas="system",
with_gsl="system",

View file

@ -19,13 +19,13 @@ source ./cmake/cmake_cp2k.sh "${PROFILE}" "${VERSION}"
# Compile CP2K
echo -en '\nCompiling CP2K ... '
if ninja --verbose &> ninja.log; then
echo "done."
echo "done"
else
echo -e "failed.\n\n"
tail -n 100 ninja.log
mkdir -p /workspace/artifacts/
cp ninja.log /workspace/artifacts/
echo -e "\nSummary: Compilation failed."
echo -e "\nSummary: Compilation failed"
echo -e "Status: FAILED\n"
exit 1
fi