Simplify root CI to grouped-tests.yml (matrix from test/test_groups.toml)#14
Merged
ChrisRackauckas merged 1 commit intoJun 8, 2026
Merged
Conversation
…oml)
Replace the hand-maintained Core × {lts,1,pre} matrix in the root CI.yml
test job with the thin SciML/.github grouped-tests.yml@v1 caller, moving
the matrix into test/test_groups.toml. The root runtests.jl dispatches on
GROUP (the default), so no group-env-name override is needed; the old job
ran with check_bounds: auto and coverage disabled, preserved as
check-bounds: auto and coverage: false.
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
CI.ymltest workflow from a hand-maintainedstrategy.matrixinto the thinSciML/.github/.github/workflows/grouped-tests.yml@v1caller, with the matrix declared once in a new roottest/test_groups.toml. TheSublibrary CIworkflow (which callssublibrary-project-tests.yml@v1) is untouched.The workflow filename and
name: CIare preserved, so the branch-protection status-check name is unchanged. The existingon:triggers andconcurrency:block are kept verbatim.Matrix
The old
testjob ran agroup: [Core]×version: [lts, 1, pre]matrix (no excludes/includes) — 3 cells.test/test_groups.toml:Per-group / per-job specials carried over
test/runtests.jldispatches onGROUP(the default), so nogroup-env-nameoverride is needed.check_bounds: auto→with: check-bounds: auto.coverage: false→with: coverage: false.timeout-minutes: 120(the workflow default),num_threads = 1, nocontinue-on-error— all defaults, nothing else to set.Verified matrix match
Ran
scripts/compute_affected_sublibraries.jl <repo> --root-matrixfromSciML/.github@v1against this branch. It emits exactly:3/3 exact match with the old embedded matrix. TOML and YAML both parse cleanly. The package test suite was not run locally (CI validates).
Ignore until reviewed by @ChrisRackauckas.