From 4da6370d43f55a3f5ad576c5a1528b6ba9c53258 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Wed, 3 Jun 2026 08:05:21 +0300 Subject: [PATCH] ci : disable ccache for msvc windows release jobs (#23911) --- .github/workflows/release.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1642fc22..3559f82e3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -619,10 +619,11 @@ jobs: run: | choco install ninja - - name: ccache - uses: ggml-org/ccache-action@v1.2.21 - with: - key: release-windows-2025-${{ matrix.arch }}-${{ matrix.backend }} + # TODO: these jobs need to use llvm toolchain in order to utilize the ccache + #- name: ccache + # uses: ggml-org/ccache-action@v1.2.21 + # with: + # key: release-windows-2025-${{ matrix.arch }}-${{ matrix.backend }} - name: Install OpenCL Headers and Libs id: install_opencl @@ -650,10 +651,10 @@ jobs: cmake -S . -B build ${{ matrix.defines }} -DGGML_NATIVE=OFF -DGGML_CPU=OFF -DGGML_BACKEND_DL=ON -DLLAMA_BUILD_BORINGSSL=ON cmake --build build --config Release --target ${{ matrix.target }} - - name: ccache-clear - uses: ./.github/actions/ccache-clear - with: - key: release-windows-2025-${{ matrix.arch }}-${{ matrix.backend }} + #- name: ccache-clear + # uses: ./.github/actions/ccache-clear + # with: + # key: release-windows-2025-${{ matrix.arch }}-${{ matrix.backend }} - name: Pack artifacts id: pack_artifacts