From 4e567479446d4681cf14c9b29575996a977c68af Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 21 Mar 2025 08:19:24 +0100 Subject: [PATCH] ci : increase windows-cublas evict-old-files to 5d (#2915) This commit updates the evict-old-files parameter for the windows-cublas build job to 5 days. The motivation for this change is to avoid the full rebuild which takes around 1.5 hours for the windows-cublas build job. Considering that there are periods of low traffic on whisper.cpp (like weekends etc.) it might be better to have a longer eviction policy to avoid the full rebuild. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7d73c92..989b1dc7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -687,7 +687,7 @@ jobs: with: key: ${{ github.job }}-${{ matrix.cuda-toolkit }}-${{ matrix.build }} variant: sccache - evict-old-files: 1d + evict-old-files: 5d - name: Install Cuda Toolkit 11.8.0 if: ${{ matrix.cuda-toolkit == '11.8.0' }}