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

@ -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