Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/serial-libs/scotch/SPECS/scotch.spec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Name: %{pname}-%{compiler_family}%{PROJ_DELIM}
Summary: Graph, mesh and hypergraph partitioning library
Group: %{PROJ_NAME}/serial-libs
%endif
Version: 7.0.10
Version: 7.0.11
Release: 1%{?dist}
License: CeCILL-C
URL: https://gitlab.inria.fr/scotch/scotch
Expand Down
6 changes: 5 additions & 1 deletion tests/ci/setup_slurm_and_run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ sudo --user="${USER}" --login bash -c "cd ${PWD}/tests; find ./ -name '*.log' -d

# Always running at least with '--enable-modules'. No need to check for
# an empty TESTS array.
MPI_FAMILIES="openmpi5 mpich"
if [ "$(uname -m)" != "aarch64" ]; then
MPI_FAMILIES="${MPI_FAMILIES} mvapich2"
fi
if sudo \
--user="${USER}" \
--preserve-env=SIMPLE_CI \
Expand All @@ -144,7 +148,7 @@ if sudo \
--enable-rms-harness \
--enable-compilers \
--with-compiler-families='${COMPILER_FAMILY}' \
--with-mpi-families='openmpi5 mpich mvapich2' \
--with-mpi-families='${MPI_FAMILIES}' \
${TESTS[*]}; \
make check"; then
TESTS_FAILED=0
Expand Down
Loading