From 64d57d3df5c8dacee098577257edcaa154bf5ef3 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 3 Aug 2026 13:34:00 +0200 Subject: [PATCH] ci : set GGML_NATIVE=OFF for build-vad workflow (#3966) This commit adds the cmake option GGML_NATIVE=OFF to the build-vad workflow to avoid the situation where the ccache is populated with object files containing instructions may not be supported by all runners. The motivation for this is that the test-vad is currently failing (depending on the runner assigned) with the linked error below. Refs: https://github.com/ggml-org/whisper.cpp/actions/runs/30625192129/job/91600926109?pr=3963 --- .github/workflows/build-vad.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-vad.yml b/.github/workflows/build-vad.yml index dd0efa33e..d34a96ec1 100644 --- a/.github/workflows/build-vad.yml +++ b/.github/workflows/build-vad.yml @@ -41,7 +41,7 @@ jobs: - name: Build shell: bash run: | - cmake -B build -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache + cmake -B build -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DGGML_NATIVE=OFF cmake --build build --config Release - name: Test