ci: disable test-cgal job (#23)
Some checks failed
C++ Tests / test-fast (push) Successful in 2m12s
API Docs / doc-build (push) Has been skipped
C++ Tests / test-cgal (push) Has been skipped
C++ Tests / quality-gates (push) Successful in 2m13s
Mirror to Codeberg / mirror (push) Failing after 55s

This commit is contained in:
2026-05-26 20:19:33 +00:00

View File

@@ -57,9 +57,30 @@ jobs:
# #
# Boost (libboost-dev) is already present in the container since the image rebuild. # Boost (libboost-dev) is already present in the container since the image rebuild.
# ───────────────────────────────────────────────────────────────────────────── # ─────────────────────────────────────────────────────────────────────────────
# ─── DISABLED 2026-05-26 ──────────────────────────────────────────────────
# The full CGAL test build (`conformallab_cgal_tests`, -j1, ~minutes) is
# too compute-intensive for the eulernest runner: even with the 1600 MB
# memory bump the job OOMs intermittently during CGAL+Eigen template
# expansion, so most recent runs fail without exposing a real regression.
# While we work through this, the job is gated off via `if: false` —
# `workflow_dispatch` reruns from the Gitea UI still work, and the body
# of the job is preserved unchanged for easy reactivation.
#
# Consequences:
# * test-fast (Job 1) still runs on every push/PR — pure-math tests
# stay gated.
# * quality-gates (Job 3) still runs on every push/PR — style /
# convention checks stay gated.
# * The two structural sub-gates nested under test-cgal
# (`scripts/check-test-counts.sh`, `scripts/try_it.sh`) are
# temporarily un-gated. Run them locally before tagging a release;
# a follow-up will relocate them into a cheaper job.
#
# To re-enable: change `if: false` back to
# `if: github.event_name == 'pull_request'`.
test-cgal: test-cgal:
needs: test-fast needs: test-fast
if: github.event_name == 'pull_request' if: false # DISABLED 2026-05-26 — see comment block above
runs-on: eulernest runs-on: eulernest
container: container:
image: git.eulernest.eu/conformallab/ci-cpp:latest image: git.eulernest.eu/conformallab/ci-cpp:latest