ci: implement parallel matrix architecture for segmented testing#1421
Draft
tirthpatel90 wants to merge 2 commits intooraios:mainfrom
Draft
ci: implement parallel matrix architecture for segmented testing#1421tirthpatel90 wants to merge 2 commits intooraios:mainfrom
tirthpatel90 wants to merge 2 commits intooraios:mainfrom
Conversation
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.
Hi @MischaPanch and @rtizzy,
Following up on our discussion in #1362, I have pivoted the CI architecture from a monolithic maximal image to a parallelized matrix strategy.
Changes & Proof of Concept in this PR:
pytestexecution into parallel matrix jobs:Heavy Toolchains(C++, Rust, Java),Medium Toolchains, and a dynamicCatch-All.pytest --ignoreflags to automatically pick up any unassigned or newly added language servers.Next Steps (Phase 2):
Currently, this workflow temporarily runs on the old maximal image to test the matrix routing logic. The
MediumandCatch-Allbatches predictably fail/hang at the end due to missing JIT/toolchains (like Julia precompilation and Zig/OCaml setup).Once we are aligned on this matrix structure, I will swap the container to @rtizzy's optimized lean base image and implement pre-test setup scripts within the matrix to handle these missing toolchains on-the-fly.
Let me know if this structural direction looks good to you!