From 9c35c2cb7156f7fad2d65fd38d78daa8794f972c Mon Sep 17 00:00:00 2001 From: Tarik Moussa Date: Sun, 17 May 2026 20:39:32 +0200 Subject: [PATCH] =?UTF-8?q?fix(ci):=20entferne=20WITH=5FCGAL=5FTESTS=3DON?= =?UTF-8?q?=20aus=20test-fast=20=E2=80=94=20Job=20braucht=20kein=20Boost?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit test-fast ist der schnelle, abhängigkeitsfreie Job: nur Eigen + GTest. WITH_CGAL_TESTS=ON in test-fast triggert unnötigerweise find_package(Boost) und konfiguriert das CGAL-Test-Verzeichnis. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/cpp-tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/cpp-tests.yml b/.gitea/workflows/cpp-tests.yml index af74f7a..6f3f86a 100644 --- a/.gitea/workflows/cpp-tests.yml +++ b/.gitea/workflows/cpp-tests.yml @@ -12,8 +12,7 @@ on: # ───────────────────────────────────────────────────────────────────────────── # Job 1 — test-fast # Pure-math tests (Clausen, ImLi₂, Hyper-ideal Geometrie). -# Konfiguriert mit -DWITH_CGAL_TESTS=ON (Boost im Image), baut aber nur -# conformallab_tests. Läuft auf ALLEN Branches in < 1 min. +# Kein CGAL, kein Boost. Nur Eigen + GTest. Läuft auf ALLEN Branches. # ───────────────────────────────────────────────────────────────────────────── jobs: test-fast: @@ -25,7 +24,7 @@ jobs: - uses: actions/checkout@v4 - name: Configure (tests-only) - run: cmake -S code -B build -DCMAKE_BUILD_TYPE=Release -DWITH_CGAL_TESTS=ON + run: cmake -S code -B build -DCMAKE_BUILD_TYPE=Release - name: Build run: cmake --build build --target conformallab_tests -j$(nproc)