-
-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Summary
CI is currently broken due to a documentation build failure. The makedocs process fails during the CheckDocument phase because of an unused footnote reference.
Root Cause
The file markdown/Jumps/EGFR_Benchmark.md defines a footnote [^2] on line 108 that is never referenced in the document text. Documenter v1.16.1 now enforces that all defined footnotes must be used, causing the build to fail.
Error Message:
[ Info: CheckDocument: running document checks.
┌ Error: unused footnote named '2' in docs/src/Jumps/EGFR_Benchmark.md.
└ @ Documenter ~/.julia/packages/Documenter/xvqbW/src/utilities/utilities.jl:47
ERROR: LoadError: `makedocs` encountered an error [:footnote] -- terminating build before rendering.
Affected File
markdown/Jumps/EGFR_Benchmark.md- Line 108 defines:This footnote is defined but never referenced anywhere in the document.[^2]: Loman TE, Ma Y, Ilin V, et al. Catalyst: Fast and flexible modeling of reaction networks.
Fix Approach
Two possible solutions:
- Remove the unused footnote: Delete line 108 if the reference is not needed
- Add reference to the footnote: Add
[^2]somewhere in the document text where the Catalyst citation is relevant
CI Details
- Failed Run: https://github.com/SciML/SciMLBenchmarksOutput/actions/runs/20789564796
- Job: build (ID 59708168188)
- Exit Code: 1
- Documenter Version: v1.16.1
Detection
This issue was discovered during an automated CI health check (PR #13).
This issue was automatically created by an automated CI health check system.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working