Some checks failed
C++ Tests / test-fast (pull_request) Failing after 2m7s
C++ Tests / quality-gates (pull_request) Has been skipped
C++ Tests / test-fast (push) Failing after 2m10s
C++ Tests / quality-gates (push) Has been skipped
API Docs / doc-build (push) Has been skipped
Markdown link check / check (push) Has been skipped
C++ Tests / test-cgal (pull_request) Has been skipped
C++ Tests / test-cgal (push) Has been skipped
Every container now has an explicit --memory limit so the OOM killer has clean boundaries to work with instead of letting any single job consume all available RAM: test-fast: 800m (build Eigen+GTest, run 26 tests) test-cgal: 2000m (LOW_MEMORY_BUILD, was already set) quality-gates: 600m (apt install + 4 script checks) doc-build: 800m (Doxygen HTML generation) markdown-links: 400m (pure Python, very lightweight) memory-swap = 1.5× memory in each case (150% total) so the OOM killer fires cleanly without exhausting the SD card. ⚠ This is workflow-side protection only. The runner-side fix (capacity: 1 in act-runner config) prevents parallel containers entirely and is the more reliable protection — see CLAUDE.md. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
name: Markdown link check
|
|
|
|
# Verify every internal markdown link in the repo resolves to an existing
|
|
# file (or anchor).
|
|
#
|
|
# Triggers:
|
|
# - "/links" in commit message (manual, on that exact commit)
|
|
# - Weekly cron Mon 05:00 UTC (catches link rot without any activity)
|
|
# - workflow_dispatch (manual run on any branch)
|
|
#
|
|
# git commit -m "docs: rename section /links"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
- "claude/**"
|
|
- "feature/**"
|
|
- "review/**"
|
|
schedule:
|
|
- cron: "0 5 * * 1" # Monday 05:00 UTC weekly link-rot check
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
check:
|
|
if: |
|
|
github.event_name == 'schedule' ||
|
|
github.event_name == 'workflow_dispatch' ||
|
|
contains(github.event.head_commit.message, '/links')
|
|
runs-on: eulernest
|
|
container:
|
|
image: git.eulernest.eu/conformallab/ci-cpp:latest
|
|
options: "--memory=400m --memory-swap=600m"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
# ── Pure-python internal link check (no external network needed) ────
|
|
# We use the same logic that found the 2 broken links before the
|
|
# reviewer meeting: parse every [text](path) link, check that the
|
|
# target file exists relative to the source file's directory. Skips
|
|
# http(s)://, mailto:, and pure-anchor (#fragment) links.
|
|
- name: Internal link check (all *.md files)
|
|
run: python3 scripts/check-markdown-links.py
|