From f7944e0a7105fbae2b3592f599f15974a24af58d Mon Sep 17 00:00:00 2001 From: Federico Perini Date: Mon, 24 Jun 2024 17:12:43 +0200 Subject: [PATCH] do not test oneAPI + HDF5 (cannot build) --- ci/meta_tests.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/ci/meta_tests.sh b/ci/meta_tests.sh index d9749bb511..4cd9bbb921 100755 --- a/ci/meta_tests.sh +++ b/ci/meta_tests.sh @@ -42,10 +42,14 @@ pushd metapackage_mpi_c "$fpm" run --verbose popd -pushd metapackage_hdf5 -"$fpm" build --verbose -"$fpm" run --verbose -popd + +# ifx cannot currently build the HDF5 library +if [ ! "$FPM_FC" == "ifx" ]; then + pushd metapackage_hdf5 + "$fpm" build --verbose + "$fpm" run --verbose + popd +fi # Cleanup rm -rf ./*/build