Fix rust CI builds in untagged checkouts - #1
Draft
joschaschmiedt with Copilot wants to merge 3 commits into
Draft
Conversation
Co-authored-by: joschaschmiedt <2520458+joschaschmiedt@users.noreply.github.com>
|
@copilot, can we not use the last tag version plus a dev suffix with the commit hash? 0.0.0 is not very useful. |
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job rust
Fix rust CI builds in untagged checkouts
Aug 6, 2026
Co-authored-by: joschaschmiedt <2520458+joschaschmiedt@users.noreply.github.com>
Author
Addressed in 4691630. The rust workflow now uses the tag-derived version when |
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.
The
rustGitHub Actions job was failing before compilation becauseserver/build.rsrequiresVSTIMD_VERSION, while CI branch/PR runs in this repository do not have a reachablev*tag. As a result, ordinary CI builds aborted in version resolution instead of exercising the Rust build/test pipeline.CI version stamping
VSTIMD_VERSIONin.github/workflows/ci.ymlfor branch and PR runs.server/build.rstakes its explicit-version path instead of panicking on missing tags.Release behavior remains tag-driven
release.ymlunchanged, so release artifacts still derive their version from Git tags rather than CI defaults.Workflow cleanup
ci.ymlthat implied tag fetching alone was sufficient for this repository’s CI builds.Example: