From 6409c7ec82c43248d57a249d46b294cc1c00f6f8 Mon Sep 17 00:00:00 2001 From: sukibaby <163092272+sukibaby@users.noreply.github.com> Date: Sun, 22 Jun 2025 19:21:16 -0700 Subject: [PATCH] Temporarily disable CMake build caching in ci.yml This is to resolve failures in Windows CI following a VS2022 update --- .github/workflows/ci.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 91761f2671..1243fe1ca7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,14 +43,15 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive - - name: Cache CMake build directory - uses: actions/cache@v4 - with: - path: | - build - key: ${{ runner.os }}-${{ runner.arch }}-cmake-build-ci-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }} - restore-keys: | - ${{ runner.os }}-${{ runner.arch }}-cmake-build-ci- + ### TEMPORARY FIX: Disable cmake cache until it expires so that windows builds work for the time being + # - name: Cache CMake build directory + # uses: actions/cache@v4 + # with: + # path: | + # build + # key: ${{ runner.os }}-${{ runner.arch }}-cmake-build-ci-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }} + # restore-keys: | + # ${{ runner.os }}-${{ runner.arch }}-cmake-build-ci- - name: Install dependencies if: matrix.os != 'windows-latest' run: ${{ matrix.install }}