ci: disable test-cgal job (compute-intensive, OOM-prone)
The CGAL test build is too heavy for the eulernest runner — most recent runs OOM during CGAL+Eigen template expansion at -j1/1600 MB rather than exposing real regressions. Gate the job off with `if: false` and a DISABLED-2026-05-26 comment block, matching the pattern already used for doxygen-pages.yml and perf-compile-time.yml. test-fast and quality-gates keep running on every push/PR; workflow_dispatch reruns of test-cgal still work from the Gitea UI. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -57,9 +57,30 @@ jobs:
|
||||
#
|
||||
# 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:
|
||||
needs: test-fast
|
||||
if: github.event_name == 'pull_request'
|
||||
if: false # DISABLED 2026-05-26 — see comment block above
|
||||
runs-on: eulernest
|
||||
container:
|
||||
image: git.eulernest.eu/conformallab/ci-cpp:latest
|
||||
|
||||
Reference in New Issue
Block a user