From ff3841fff112884c1e6675960fcaa8204389e946 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 1 Apr 2025 16:13:02 +0200 Subject: [PATCH] ci : add GGML_OPENMP=OFF to ubuntu-22-gcc-sanitized --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 635c500c..1d30660b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -367,7 +367,9 @@ jobs: set -e apt update apt install -y build-essential cmake git - cmake . -DCMAKE_BUILD_TYPE=Debug -DWHISPER_SANITIZE_${{ matrix.sanitizer }}=ON + cmake . -DCMAKE_BUILD_TYPE=Debug \ + -DWHISPER_SANITIZE_${{ matrix.sanitizer }}=ON \ + -DGGML_OPENMP=OFF make ctest -L gh --output-on-failure'