From 542867820950e1b3e1c6b053c9bedff769ee5ceb Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 11 Aug 2025 10:10:38 +0200 Subject: [PATCH 1/3] chore(ci): more cleanup Signed-off-by: Ettore Di Giacinto --- .github/workflows/test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a3f8987170c..96ae04d75245 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,6 +23,20 @@ jobs: matrix: go-version: ['1.21.x'] steps: + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + # this might remove tools that are actually needed, + # if set to "true" but frees about 6 GB + tool-cache: true + # all of these default to true, but feel free to set to + # "false" if necessary for your workflow + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true - name: Release space from worker run: | echo "Listing top largest packages" From 6db19c5cb98696af8a22cea15ee022f2dedb69a0 Mon Sep 17 00:00:00 2001 From: "LocalAI [bot]" <139863280+localai-bot@users.noreply.github.com> Date: Mon, 11 Aug 2025 12:54:21 +0200 Subject: [PATCH 2/3] chore: :arrow_up: Update ggml-org/llama.cpp to `79c1160b073b8148a404f3dd2584be1606dccc66` (#6006) :arrow_up: Update ggml-org/llama.cpp Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: mudler <2420543+mudler@users.noreply.github.com> --- backend/cpp/llama-cpp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/cpp/llama-cpp/Makefile b/backend/cpp/llama-cpp/Makefile index 02ced7fbfda5..24e347e0bc15 100644 --- a/backend/cpp/llama-cpp/Makefile +++ b/backend/cpp/llama-cpp/Makefile @@ -1,5 +1,5 @@ -LLAMA_VERSION?=cd6983d56d2cce94ecb86bb114ae8379a609073c +LLAMA_VERSION?=79c1160b073b8148a404f3dd2584be1606dccc66 LLAMA_REPO?=https://github.com/ggerganov/llama.cpp CMAKE_ARGS?= From fba5b557a1e2a675af16f4abd7303e1724795330 Mon Sep 17 00:00:00 2001 From: "LocalAI [bot]" <139863280+localai-bot@users.noreply.github.com> Date: Mon, 11 Aug 2025 12:54:41 +0200 Subject: [PATCH 3/3] chore: :arrow_up: Update ggml-org/whisper.cpp to `b02242d0adb5c6c4896d59ac86d9ec9fe0d0fe33` (#6009) :arrow_up: Update ggml-org/whisper.cpp Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: mudler <2420543+mudler@users.noreply.github.com> --- backend/go/whisper/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/go/whisper/Makefile b/backend/go/whisper/Makefile index 38c44eb699e2..e2d824d8277a 100644 --- a/backend/go/whisper/Makefile +++ b/backend/go/whisper/Makefile @@ -6,7 +6,7 @@ CMAKE_ARGS?= # whisper.cpp version WHISPER_REPO?=https://github.com/ggml-org/whisper.cpp -WHISPER_CPP_VERSION?=4245c77b654cd384ad9f53a4a302be716b3e5861 +WHISPER_CPP_VERSION?=b02242d0adb5c6c4896d59ac86d9ec9fe0d0fe33 export WHISPER_CMAKE_ARGS?=-DBUILD_SHARED_LIBS=OFF export WHISPER_DIR=$(abspath ./sources/whisper.cpp)