diff --git a/components/serial-libs/scotch/SPECS/scotch.spec b/components/serial-libs/scotch/SPECS/scotch.spec index 3be8bfa5bb..995516b983 100644 --- a/components/serial-libs/scotch/SPECS/scotch.spec +++ b/components/serial-libs/scotch/SPECS/scotch.spec @@ -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 diff --git a/tests/ci/setup_slurm_and_run_tests.sh b/tests/ci/setup_slurm_and_run_tests.sh index 77edff6192..0777dfc3b9 100755 --- a/tests/ci/setup_slurm_and_run_tests.sh +++ b/tests/ci/setup_slurm_and_run_tests.sh @@ -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 \ @@ -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