From fdff11470178e301a57c0e3ba1d7de862d6b07bb Mon Sep 17 00:00:00 2001 From: "LocalAI [bot]" <139863280+localai-bot@users.noreply.github.com> Date: Sun, 28 Jun 2026 00:40:21 +0200 Subject: [PATCH] ci(vibevoice): skip the ASR transcription e2e on release tag builds (#10567) The `tests-vibevoice-cpp-grpc-transcription` job downloads the vibevoice ASR model (`vibevoice-asr-q4_k.gguf`, ~10 GB) and decodes it through the e2e-backends harness. On release tag pushes the detect step forces the full matrix (run-all=true), so this job runs and consistently times out: the inner `go test -timeout 30m` cannot pull a 10 GB file from HuggingFace's throttled Xet CDN within budget (curl --max-time 600 x5 retries overruns the deadline), leaving an orphaned curl and a 30m panic. It has been red on every release (v4.5.3/4/5). Guard the job's `if` with `!startsWith(github.ref, 'refs/tags/')` so it no longer runs on tag/release builds. It still runs on PRs and branch pushes that touch vibevoice-cpp, so real regressions are caught off the release path. A proper fix (a small ASR test GGUF) can re-enable it on tags later. Assisted-by: Claude:claude-opus-4-8 [Claude Code] Signed-off-by: Ettore Di Giacinto Co-authored-by: Ettore Di Giacinto --- .github/workflows/test-extra.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-extra.yml b/.github/workflows/test-extra.yml index 650f464a2..b8d212219 100644 --- a/.github/workflows/test-extra.yml +++ b/.github/workflows/test-extra.yml @@ -1008,7 +1008,11 @@ jobs: # image + working dir. tests-vibevoice-cpp-grpc-transcription: needs: detect-changes - if: needs.detect-changes.outputs.vibevoice-cpp == 'true' || needs.detect-changes.outputs.run-all == 'true' + # Skip on release tag pushes: the ASR Q4_K model is ~10 GB and cannot be + # pulled from HF within the inner `go test -timeout 30m` budget on a CI + # runner, so every tag build hung and timed out. Still runs on PRs/branch + # pushes that touch vibevoice-cpp so regressions are caught off the release path. + if: (needs.detect-changes.outputs.vibevoice-cpp == 'true' || needs.detect-changes.outputs.run-all == 'true') && !startsWith(github.ref, 'refs/tags/') runs-on: bigger-runner timeout-minutes: 150 steps: