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" 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?= 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)