CI: convert root test workflow to grouped-tests.yml thin caller#541
Merged
ChrisRackauckas merged 1 commit intoJun 8, 2026
Merged
Conversation
Move the hand-maintained group x version matrix out of the root test workflow and into test/test_groups.toml, consumed by the reusable SciML/.github grouped-tests.yml@v1. The matrix is unchanged: Core, Methods, Extensions, Misc on [lts, 1, pre]; QA on [lts, 1]. Existing triggers (master push/PR, paths-ignore docs/**, weekly schedule) and concurrency are preserved. runtests.jl is unchanged. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
What
Converts the root test workflow (
.github/workflows/Tests.yml) from a hand-maintained group × version matrix into a thin caller of the reusableSciML/.github/.github/workflows/grouped-tests.yml@v1, with the matrix declared once in a new roottest/test_groups.toml.Changes
test/test_groups.toml(new): encodes the existing matrix.Core,Methods,Extensions,Miscon["lts", "1", "pre"]QAon["lts", "1"].github/workflows/Tests.yml: the matrix+steps test job is replaced with the thingrouped-tests.yml@v1caller. Existing triggers (push/pull_requestonmaster,paths-ignore: docs/**, the weeklyschedulecron) and theconcurrencyblock are preserved verbatim.test/runtests.jlis unchanged — it already dispatchesGROUPacrossCore/Methods/Extensions/Misc/QA, which is exactly whatgrouped-tests.ymldrives (defaultGROUPenv var).No other workflows (Downgrade, Documentation, FormatCheck, SpellCheck, RunicSuggestions, DependabotAutoMerge, DocPreviewCleanup, TagBot) are touched.
Equivalence check (static)
Running the upstream matrix script against the new TOML reproduces the original 14-job matrix exactly:
yields Core/Methods/Extensions/Misc ×
{lts,1,pre}(12) + QA ×{lts,1}(2) = 14 jobs — identical to the previousversion × groupmatrix with thepre+QAexclusion.Ignore until reviewed by @ChrisRackauckas.