Summary
Two independent weaknesses in cache.yml turned a one-line content defect into four days without a usable execution cache, and hid it from the check that should have caught it first.
What happened
Four cache.yml runs failed or were cancelled between 2026-08-20 and 2026-08-24, while the last success was 2026-08-17. The publish build for publish-2026aug24 consequently fell back on the eight-day-old artifact, which shipped a site with inconsistent chapter numbering (filed separately).
The causes were not a single recurring one:
| Run |
Date |
Cause |
| 32331172292 |
2026-08-20T04:14Z |
FileNotFoundError: '_fonts/SourceHanSerifSC-SemiBold.otf' in learning_approximation.md, plus the hoist_failure warning below — fixed by #262 |
| — |
2026-08-20T22:56Z |
hoist_failure warning alone |
| 32433407779 |
2026-08-21T00:38Z |
cancelled by hand two minutes in, not a failure |
| 32686259809 |
2026-08-24T03:23Z |
hoist_failure warning alone — fixed by #265 |
The hoist_failure cause was one Sphinx warning promoted to an error by -W: lectures/hoist_failure.md:34: WARNING: Document headings start at H2, not H1 [myst.header]. The stale duplicated frontmatter block left in the body by the #260 resync parsed as body text, and its trailing --- turned the block into a setext H2 ahead of the real # 故障树不确定性.
Both underlying defects were lecture-content defects introduced by translate seed/forward operations, and both are now fixed. What follows is why they cost four days.
Defect 1 — the -W gate never re-reads, so it fires late and in the wrong workflow
cache.yml runs the sphinx-tojupyter build and then the HTML build with -W. Because the doctrees survive between them, the -W step re-reads nothing, so the warning surfaces only on a cold run. The same shape exists in publish.yml, where the rm -r _build/.doctrees line is commented out.
The consequence is that a content defect that should fail a PR's CI instead fails the weekly cold cache build, days later and far from the change that caused it.
Suggested fix: clear _build/.doctrees between the two builds so the -W step re-reads every source. Smallest change with the strongest guarantee. Alternatively drop -W from the tojupyter step and rely on a re-reading HTML step.
Defect 2 — a warning-only failure discards 106 minutes of successful execution
On the 2026-08-24 run, all 142 notebooks executed successfully (142 Executed notebook in lines, zero CellExecutionError) over 1h46m, and the artifact was then thrown away because the upload step does not run on failure.
Suggested fix: add if: success() || failure() to the Upload "_build" folder (cache) step. jupyter-cache does not store failed executions, so the artifact stays correct even when a lecture genuinely errors, and the run's red status remains the signal. This change alone would have made the 2026-08-24 publish a cache hit despite the hoist_failure defect.
Also noted
cache.yml still carries bare apt-get install steps with no timeout-minutes and no retry — the weakness PR #263 would have hardened before it was closed. Not implicated in any of these four failures (apt was green throughout: graphviz 31s, texlive 3m28s), but it remains the open item behind the documented hang class.
Refs: QuantEcon/project-translation#48 (delivery integrity); #262, #265 (the two content fixes); #263 (closed apt hardening).
Summary
Two independent weaknesses in
cache.ymlturned a one-line content defect into four days without a usable execution cache, and hid it from the check that should have caught it first.What happened
Four
cache.ymlruns failed or were cancelled between 2026-08-20 and 2026-08-24, while the last success was 2026-08-17. The publish build for publish-2026aug24 consequently fell back on the eight-day-old artifact, which shipped a site with inconsistent chapter numbering (filed separately).The causes were not a single recurring one:
FileNotFoundError: '_fonts/SourceHanSerifSC-SemiBold.otf'inlearning_approximation.md, plus thehoist_failurewarning below — fixed by #262hoist_failurewarning alonehoist_failurewarning alone — fixed by #265The
hoist_failurecause was one Sphinx warning promoted to an error by-W:lectures/hoist_failure.md:34: WARNING: Document headings start at H2, not H1 [myst.header]. The stale duplicated frontmatter block left in the body by the #260 resync parsed as body text, and its trailing---turned the block into a setext H2 ahead of the real# 故障树不确定性.Both underlying defects were lecture-content defects introduced by
translateseed/forward operations, and both are now fixed. What follows is why they cost four days.Defect 1 — the
-Wgate never re-reads, so it fires late and in the wrong workflowcache.ymlruns the sphinx-tojupyter build and then the HTML build with-W. Because the doctrees survive between them, the-Wstep re-reads nothing, so the warning surfaces only on a cold run. The same shape exists inpublish.yml, where therm -r _build/.doctreesline is commented out.The consequence is that a content defect that should fail a PR's CI instead fails the weekly cold cache build, days later and far from the change that caused it.
Suggested fix: clear
_build/.doctreesbetween the two builds so the-Wstep re-reads every source. Smallest change with the strongest guarantee. Alternatively drop-Wfrom the tojupyter step and rely on a re-reading HTML step.Defect 2 — a warning-only failure discards 106 minutes of successful execution
On the 2026-08-24 run, all 142 notebooks executed successfully (142
Executed notebook inlines, zeroCellExecutionError) over 1h46m, and the artifact was then thrown away because the upload step does not run on failure.Suggested fix: add
if: success() || failure()to theUpload "_build" folder (cache)step.jupyter-cachedoes not store failed executions, so the artifact stays correct even when a lecture genuinely errors, and the run's red status remains the signal. This change alone would have made the 2026-08-24 publish a cache hit despite thehoist_failuredefect.Also noted
cache.ymlstill carries bareapt-get installsteps with notimeout-minutesand no retry — the weakness PR #263 would have hardened before it was closed. Not implicated in any of these four failures (apt was green throughout: graphviz 31s, texlive 3m28s), but it remains the open item behind the documented hang class.Refs: QuantEcon/project-translation#48 (delivery integrity); #262, #265 (the two content fixes); #263 (closed apt hardening).