Simplify root CI to grouped-tests.yml (matrix from test/test_groups.toml)#617
Merged
ChrisRackauckas merged 1 commit intoJun 8, 2026
Merged
Conversation
…oml) Replace the hand-maintained group x version matrix in the root CI.yml test job with the thin grouped-tests.yml@v1 caller. The (group, version) matrix is now read from test/test_groups.toml, which already declares the root groups (Core on [lts,1,pre]; nopre on [lts,1]) and reproduces the previous matrix exactly (5/5). coverage-directories: "src" is preserved as the only non-default input. The root reads its group from the default GROUP env var, so no group-env-name input is needed. SublibraryCI.yml (lib/* coverage) is untouched. 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.
Summary
Replaces the hand-maintained
group × versionmatrix in the rootCI.ymltest job with the thingrouped-tests.yml@v1caller. The root package's test-group matrix is now read fromtest/test_groups.toml(already present from the merged monorepo uniformization).Before —
CI.ymlembedded:After:
The matrix now lives in
test/test_groups.toml:Verified matrix match — 5/5 exact
Ran
scripts/compute_affected_sublibraries.jl . --root-matrixfromSciML/.github@v1and compared the emitted(group, version)set against the set the old workflow ran:No missing, no extra.
5/5 exact.Notes
name: CI, theon:triggers, andconcurrency:are preserved verbatim, so the branch-protection status-check identity is unchanged.test/runtests.jldispatches on the defaultGROUPenv var, so nogroup-env-nameinput is needed.check-boundsandcoveragedefaults are unchanged (yes/truein both the oldtests.yml@v1path andgrouped-tests.yml); only the non-defaultcoverage-directories: "src"is carried over.nopregroup key is intentionally lowercase to match the literalGROUP == "nopre"dispatch inruntests.jl.SublibraryCI.yml(thelib/*sublibrary coverage viasublibrary-project-tests.yml@v1) is untouched.Ignore until reviewed by @ChrisRackauckas.