From: Daniel Bevenius Date: Mon, 3 Aug 2026 11:34:00 +0000 (+0200) Subject: ci : set GGML_NATIVE=OFF for build-vad workflow (#3966) X-Git-Tag: upstream/1.9.2~31 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=64d57d3df5c8dacee098577257edcaa154bf5ef3;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp 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 --- diff --git a/.github/workflows/build-vad.yml b/.github/workflows/build-vad.yml index dd0efa33..d34a96ec 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