You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build.ps1 ran every pandoc compile in a Start-Job but never inspected the
job results, so failed compilations were swallowed and a partial build.zip
was shipped. On CI the unbounded parallel lualatex/beamer compiles exhausted
runner memory and were killed, dropping all slide PDFs while the workflow
stayed green.
- Throttle parallelism (ForEach-Object -Parallel -ThrottleLimit 2) so heavy
beamer compiles no longer OOM the runner.
- Check each pandoc exit code / output file and fail the build on any error,
including the combined script.pdf step.
- Pre-create output directories in the main thread to avoid worker races.
Also temporarily add this branch to the workflow push trigger to validate the
build; create_release stays guarded by refs/heads/2026 so no release is made.
0 commit comments