Regenerate CI workflows with xmsconan 2.16.0 - #129
Merged
Conversation
2.16.0 compiles testing_sources into the library again, so a build produced by this pin publishes xmscore's testing helpers (ttEqualPointsXYZ, ttTextFilesEqual, ...) for dependent libraries to link. CMakeLists.txt is generated at build time and not tracked here, so the pin is the whole change.
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.
Bumps the xmsconan pin to 2.16.0 (was 2.15.5).
Why this matters more than the diff suggests
The tracked change is five pin lines, but the effect is on the published artifact. xmsconan 2.16.0 compiles
testing_sourcesinto the library again, so a build produced under this pin publishes xmscore's testing helpers —ttEqualPointsXYZ,ttTextFilesEqualand friends — for dependent libraries to link.CMakeLists.txtis generated at build time by theGenerate Build Filesstep and is not tracked in this repo, so the pin is the entire change here. Regenerating locally with 2.16.0 confirms the rendered file now contains:Coverage.yamlmoves toxmsconan>=2.16.0, keeping>=as the canary.Context
xmscore 7.0.8 (2026-05-06) is the last release whose library carries the testing helpers — xmsconan 2.15.1 moved them into the runner target eight days later. 7.0.9 and 7.0.10 were therefore built without them, and downstream libraries fail to link against those builds:
71 files across six repos depend on those symbols. This is the first half of the fix; the second is releasing xmscore so a package built under 2.16.0 actually exists on the remote.
Verification
The real verification is CI itself — particularly the Coverage workflow, which exercises the two-build split (
testing=True+pybind=Falseandtesting=False+pybind=True) that this change depends on for its safety argument.To be released as 7.0.11, after which xmsgrid can re-point at it and the cascade can resume.