Canonical CI: grouped-tests.yml + root test/test_groups.toml#68
Merged
ChrisRackauckas merged 1 commit intoJun 10, 2026
Merged
Conversation
Convert the root Tests.yml matrix test job to the canonical thin caller
(SciML/.github/.github/workflows/grouped-tests.yml@v1) and move the
group x version matrix into test/test_groups.toml at the repo root.
The matrix script (compute_affected_sublibraries.jl --root-matrix) emits
the same (group, version) set as the previous hand-maintained matrix:
Core x {1, lts}, LineSearchesJL x {1, lts}, QA x {1}.
GROUP dispatch already exists in test/runtests.jl (ReTestItems tags), so
no group-env-name override is needed (root reads GROUP). The separate
enzyme job, on:/concurrency:, and all other workflows are left untouched.
Project.toml already has julia="1.10" and [compat] for every [extras]
dep, so no metadata fixes were required.
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 test workflow to the canonical thin caller and moves the test matrix into a root
test/test_groups.toml.tests:job is replaced with:group × versionmatrix now lives intest/test_groups.toml:on:,concurrency:, the workflowname:, the separateenzyme:job, and every other workflow are left untouched.with:overrides are needed:runtests.jlalready reads the defaultGROUPenv var (ReTestItems tag dispatch), check-bounds/coverage stay at defaults, no apt packages.Matrix match
compute_affected_sublibraries.jl --root-matrix(run with Julia 1.11) emits exactly the same(group, version)set as the previous hand-maintained matrix — 5 jobs:(The old matrix excluded
lts × QA; the TOML reproduces that by listing QA on["1"]only.) Noosfield — Linux-only, as before.Metadata
Root
Project.tomlalready has[compat] julia = "1.10"(LTS floor) and a[compat]entry for every[extras]dependency, so no pre-emptive metadata fixes were required.QA note
This package's
QAgroup already existed and runs via ReTestItems tags (:qa, currently ExplicitImports) inside the main test environment — not a separatetest/qa/subproject. The conversion preserves that architecture. QA continues to run on Julia1only. Any QA findings surfaced in CI will be triaged in a follow-up.Static verification only: TOML + YAML parse cleanly and the root-matrix script reproduces the old matrix. Tests/Aqua/JET were not run locally; they will run in CI.
Ignore until reviewed by @ChrisRackauckas.