mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 22:25:32 -04:00
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:
parent
f8bee9bf09
commit
edb8529057
3 changed files with 4 additions and 2 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue