Some checks failed
C++ Tests / test-fast (push) Successful in 1m55s
C++ Tests / test-cgal (push) Has been cancelled
C++ Tests / quality-gates (push) Has started running
API Docs / doc-build (push) Has been cancelled
Markdown link check / check (push) Has been cancelled
C++ Tests / test-fast (pull_request) Successful in 2m16s
C++ Tests / quality-gates (pull_request) Has been skipped
C++ Tests / test-cgal (pull_request) Has been skipped
The Pi runner (3-4 GB RAM, swap heavily loaded) OOMs when /ci-all
triggers test-cgal + quality-gates + doc-build + links simultaneously:
four Docker containers start at once after test-fast completes, each
consuming 150-400 MB, exhausting available RAM.
Fix: /ci-all removed from all three workflow files. Each keyword
now triggers exactly one job — no parallel container competition.
Safe workflow: one keyword per commit.
Typical sequence:
git commit -m 'fix: ... /test-cgal' → CGAL tests (~5 min)
git commit -m 'chore: /quality-gates' → style checks (~30 s)
CLAUDE.md: CI table updated with Pi-runner warning note.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
45 lines
1.4 KiB
YAML
45 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
|
|
|
|
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
|