Parallelize format builds and add consolidated publish job#13
Merged
Conversation
Co-authored-by: m-aciek <9288014+m-aciek@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add parallel builds and upload artifacts to GH pages
Parallelize format builds and add consolidated publish job
Mar 4, 2026
Owner
|
@copilot |
Co-authored-by: m-aciek <9288014+m-aciek@users.noreply.github.com>
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The single
buildjob ran all documentation formats sequentially and inline-published to GH pages. This refactors it into parallel per-format jobs plus a dedicatedpublishjob that runs after all builds complete. Closes #12.Build jobs (run in parallel)
Each job installs only what it needs:
build-htmlbuild-textbuild-texinfotexinfobuild-epubbuild-pdflatexmk texlive-xetex fonts-freefont-otf xindy librsvg2-binAll artifact uploads use
if: always()to capture outputs (e.g. PDF logs) even on build failure.Publish job
Runs after all five build jobs complete (
needs: [build-html, build-text, build-texinfo, build-epub, build-pdf]), only whenpublish == 'true'and not cancelled:Downloads all artifacts via
actions/download-artifact, copies available archives intogh-pages/3/, then commits and pushes. Partial publishes (when some formats fail) are handled gracefully — missing artifacts are silently skipped.The explicit "Check for build failures" step is removed; individual job failures surface natively in the GitHub Actions UI.
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.