fix(ci): resolve zig via PATH when mise is unavailable - #48
Merged
Merged
Conversation
CI installs Zig directly via mlugg/setup-zig onto PATH (no mise on the Blacksmith runner), but _check-zig-version only ever tried mise which, so the zig job failed immediately with "mise is not on PATH" in its first real CI run.
pythoninthegrass
added a commit
that referenced
this pull request
Sep 11, 2026
Records the zig CI job failure found and fixed in PR #48 (mise unavailable on the Blacksmith runner) and the cold/warm cache timings gathered via manual workflow_dispatch runs (44s cold, 23s warm), completing the last open acceptance criterion.
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
zigCI job (from feat(zig): pin zig 0.15.2 via mise and wire taskfile + CI job #47 / TASK-355.1) failed on its first real run:_check-zig-versiononly resolves zig throughmise which zig, but CI installs Zig directly viamlugg/setup-zig@v2onto PATH — there is no mise on the Blacksmith runner at all.taskfiles/zig.yml'sZIGvar now falls back tocommand -v zigwhen mise can't resolve it, and_check-zig-versionverifies whichever binary was found (mise-managed or PATH) against the pinned version in.tool-versions.Verification
task zig:lint,task zig:test,task zig:buildlocally with mise present (unchanged behavior).Test plan
task zig:lint/task zig:test/task zig:buildpass locally (mise-resolved)zigjob goes green on this PR