From 8edede8feed6a3a5cdec1f8fdc8e16e2a8e4b324 Mon Sep 17 00:00:00 2001 From: dr-robertk Date: Mon, 21 Apr 2025 21:39:22 +0200 Subject: [PATCH] [bugfix][mmesh] Disable test on Mac OS because CGAL not compiling for some unknown reason. --- testing/mmeshFromSource.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/testing/mmeshFromSource.sh b/testing/mmeshFromSource.sh index d1243dd..5ae0578 100644 --- a/testing/mmeshFromSource.sh +++ b/testing/mmeshFromSource.sh @@ -1,3 +1,10 @@ +# do not run on macOS, currently failing because of CGAL +if [ "$3" == "macOS" ]; then + echo "$0 disabled on Mac OS" + exit 0 +fi + + base="https://gitlab.dune-project.org" coreurl="$base/core" femurl="$base/dune-fem"