From fc62cbae2cdca9979395e86ab0c1c85f1bdd8dbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bartoletti?= Date: Mon, 23 Oct 2023 15:51:44 +0200 Subject: [PATCH] [CI] Fix FreeBSD with CGAL 5.6 --- .cirrus.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 60b0a88a..fda177a2 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -10,10 +10,11 @@ task: - pkg install -y cgal gmp mpfr boost-libs cmake ninja build_script: - - mkdir build - - cmake -DSFCGAL_BUILD_TESTS=ON - - make $(MAKE_FLAGS) - - ctest -VV + - fetch "https://github.com/CGAL/cgal/releases/download/v5.6/CGAL-5.6.tar.xz" -o CGAL-5.6.tar.xz + - tar xJf CGAL-5.6.tar.xz + - cmake -GNinja -S . -B build -DSFCGAL_BUILD_TESTS=ON -DCGAL_DIR=CGAL-5.6 + - cmake --build build + - ctest -VV --test-dir build freebsd_instance: cpu: 8 memory: 24g