ci: install ffmpeg before health-check smoke test#1
Merged
Conversation
The health-check smoke test was failing with exit code 1 because ffmpeg and ffprobe executables are not available on the Windows GitHub Actions runner by default. RuntimeReadinessService.CheckCore() always verifies these tools exist regardless of scope. Fix: add a Chocolatey install step for ffmpeg before the health-check step. Also add --scope core to explicitly target only the core check (ffmpeg/ffprobe), rather than relying on --mode mute normalizing to a non-AI scope by coincidence.
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job build
ci: install ffmpeg before health-check smoke test
Jul 8, 2026
TrueCodePoet
approved these changes
Jul 8, 2026
Owner
|
good to go |
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 CI
buildjob was failing at the "Health check smoke test" step becauseRuntimeReadinessService.CheckCore()unconditionally verifiesffmpegandffprobeare present — tools not pre-installed onwindows-latestrunners.Changes
.github/workflows/ci.ymlchoco install ffmpeg --no-progress -ystep before the health-check to satisfy the core tool requirements--mode muteto--scope coreto make the CI intent explicit: verify only core tooling (ffmpeg/ffprobe), not AI/replace-mode dependencies (Python, model checkpoints, etc.)