Skip to content
Snippets Groups Projects
Commit 01daf17b authored by Rene Halver's avatar Rene Halver
Browse files

fixed gcc8 Fortran08 complete run - removed Fortran08 mpi bindings

parent 8f9a9564
Branches
Tags 0.12.27
1 merge request!8Refactor
Pipeline #53748 failed
......@@ -402,7 +402,7 @@ build-mpich-complete-gcc8:
- public-docker
when: always
script:
- ./ci/build_mpi_complete.sh
- ./ci/build_mpi_complete_gcc8.sh
artifacts:
name: pages
when: always
......
#!/bin/bash
source $(cd "$(dirname "$0")"; pwd -P)/ci_funcs.sh
# create badge
create_badge "${BADGE_FILENAME}" build-mpi unknown "--color=#808080"
[[ ${BADGE_ONLY} ]] && pushbadge_exit "${BADGE_FILENAME}" 0
# load MPI environment
load_MPI
# build
mkdir -p build && cd build
if [[ $? == 0 ]]; then
#CC=/usr/lib64/mpi/gcc/openmpi3/bin/mpicc CXX=/usr/lib64/mpi/gcc/openmpi3/bin/mpicxx FC=/usr/lib64/mpi/gcc/openmpi3/bin/mpif90 ${CMAKE} ..
ln -s /usr/bin/vtk7 /usr/bin/vtk
ln -s /usr/bin/vtk7 /usr/bin/pvtk
${CMAKE} .. -DCM_ALL_FORTRAN=ON -DCM_ALL_VORONOI=ON -DCM_ALL_VTK_OUTPUT=ON -DCM_ALL_TESTS=ON -DCM_ALL_AUTO_DOC=ON -DVTK_DIR=/usr/local/lib/cmake/vtk-8.2
make VERBOSE=1
make test
if [[ $? == 0 ]]; then
create_badge "${BADGE_FILENAME}" build-mpi passed --color=green
pushbadge_exit "${BADGE_FILENAME}" 0
fi
fi
create_badge "${BADGE_FILENAME}" build-mpi failed --color=red
pushbadge_exit "${BADGE_FILENAME}" 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment