Canonical CI: grouped-tests.yml + root test/test_groups.toml#157
Merged
ChrisRackauckas merged 1 commit intoJun 8, 2026
Merged
Conversation
Convert the root Tests.yml workflow to the canonical thin caller of
SciML/.github/.github/workflows/grouped-tests.yml@v1, with the test
matrix declared once in test/test_groups.toml at the repo root.
The previous Tests.yml hand-maintained a version x group matrix
({1,lts,pre} x {Core,QA}, excluding pre/QA) calling tests.yml@v1
directly. The new test_groups.toml declares Core on [lts,1,pre] and QA
on [lts,1], which the --root-matrix script reproduces as the identical
5-cell set. All defaults (check-bounds=yes, coverage=true,
coverage-directories=src,ext, GROUP env var) are unchanged, so the thin
caller needs no `with:` inputs. The `on:` triggers, `concurrency:`
block, workflow filename, and `name:` are preserved so branch-protection
status checks remain intact.
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 Tests.yml workflow into the canonical thin caller of
SciML/.github/.github/workflows/grouped-tests.yml@v1, with the package's own test matrix declared once in a roottest/test_groups.toml.Before
Tests.ymlhand-maintained aversion × groupmatrix callingtests.yml@v1directly:{1, lts, pre}× groups{Core, QA}, withexclude: pre/QA.After
Tests.ymlis a thin caller:and the matrix lives in
test/test_groups.toml:No
with:inputs are needed: the old job relied entirely ontests.yml@v1defaults (check-bounds: yes,coverage: true,coverage-directories: src,ext, standardGROUPenv var read byruntests.jl), all of which the grouped-tests caller preserves. Linux-only, so noosfield is set (defaultubuntu-latest).The
on:triggers (pull_request + push onmain,paths-ignore: docs/**), theconcurrency:block, the workflow filename, andname: "Tests"are all preserved verbatim so branch-protection status checks remain intact. No other workflow files were touched.Matrix match: 5/5 exact
julia scripts/compute_affected_sublibraries.jl . --root-matrixemits:This is the identical 5-cell set the old
{1,lts,pre} × {Core,QA}minuspre/QAmatrix produced.QA
This repo already has
Core/QAGROUP dispatch intest/runtests.jl(QA runs Aqua, ExplicitImports, JET). Per Category A this is a static matrix-verification only conversion — noruntests.jlchange and no local Aqua/JET run. Thetest_groups.toml+Tests.ymlboth parse cleanly (TOML and YAML validated).Ignore until reviewed by @ChrisRackauckas.