Optimize API docs generation with parallel processing#17
Merged
franciscojavierarceo merged 3 commits intomainfrom Jan 31, 2026
Merged
Optimize API docs generation with parallel processing#17franciscojavierarceo merged 3 commits intomainfrom
franciscojavierarceo merged 3 commits intomainfrom
Conversation
- Run stable, experimental, and deprecated API docs generation in parallel instead of sequentially - Add proper process tracking and error handling for parallel jobs - Maintain existing cache hit behavior - Should reduce build time from 6+ hours to ~2 hours for API docs generation This addresses the timeout issues in documentation builds by utilizing multiple CPU cores for the most time-consuming part of the build process (OpenAPI docs generation). Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
- Switch from ubuntu-latest to ubuntu-latest-8-core for both build and deploy-only jobs - Fix trailing whitespace issues in versioned docs files - Should further reduce build times with more CPU cores available
- Add missing final newlines to versioned documentation files - All pre-commit checks now passing ✅
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.
Fixes 6+ hour build timeouts by running the 3 API docs generation processes in parallel instead of sequentially.
Expected to reduce build time from 6+ hours to ~2 hours for the most time-consuming step.