Simplify root CI to grouped-tests.yml (matrix from test/test_groups.toml)#613
Merged
ChrisRackauckas merged 1 commit intoJun 8, 2026
Merged
Conversation
…oml) Replace the hand-maintained group x version matrix (plus the bespoke GPU job) in the root CI.yml `tests` job with the reusable grouped-tests.yml@v1 thin caller. The matrix now lives in test/test_groups.toml and is computed by compute_affected_sublibraries.jl --root-matrix. The root runtests.jl dispatches on the default GROUP env var, so no group-env-name override is needed. check-bounds: auto is preserved as a workflow-level input. coverage-directories defaults to src,ext (matches old). Verified the computed root matrix equals the old workflow's (group, version, runner) set exactly: 14/14. 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
Converts the root package's CI test workflow (
.github/workflows/CI.yml) from a hand-maintainedgroup × versionmatrix (plus a bespokegpujob) into the reusablegrouped-tests.yml@v1thin caller. The matrix is now declared once intest/test_groups.tomland computed bycompute_affected_sublibraries.jl --root-matrix.The sublibrary workflow (
SublibraryCI.yml, which callssublibrary-project-tests.yml@v1) is left untouched.Changes
.github/workflows/CI.yml: thetests+gpumatrix jobs become a single thin caller.name: CI, theon:triggers, andconcurrency:are preserved verbatim so the branch-protection status check name is unchanged.check-bounds: "auto"is carried as a workflow-levelwith:input (non-default).coverage-directoriesis left at thesrc,extdefault (matches the old value).test/test_groups.toml(new): reproduces the old matrix exactly.Core,SymbolicIndexingInterface,Downstream:["lts", "1", "pre"],num_threads = 2QA,NoPre:["lts", "1"](the oldexclude:dropped these onpre),num_threads = 2GPU: version["1"],runner = ["self-hosted", "Linux", "X64", "gpu"],timeout = 60(folded in from the oldgpujob)The root
test/runtests.jldispatches on the defaultGROUPenv var, so nogroup-env-nameoverride is needed.Verification
Ran
compute_affected_sublibraries.jl . --root-matrixand confirmed the emitted(group, version, runner)set equals the old workflow's set exactly: 14/14, no missing, no extra. TOML and all workflow YAML files parse cleanly. The package test suite was not run locally (CI validates it).Ignore until reviewed by @ChrisRackauckas.