From 71d3728f12741a44aaa2f3f7bcc4d1ceaba4d2de Mon Sep 17 00:00:00 2001 From: Bruno Alexandre Rosa <1791393+brunoalr@users.noreply.github.com> Date: Wed, 24 Sep 2025 17:43:29 -0300 Subject: [PATCH] Let ccache caches be handled by ccache-action --- .github/workflows/desktop-build.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 5e97197e6..749b7b72f 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -301,16 +301,6 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} - - name: Restore compiler cache (ccache) - id: ccache_restore - uses: actions/cache/restore@v4 - env: - BRANCH_NAME: ${{ github.head_ref || github.ref_name }} - with: - path: ${{env.CCACHE_DIR}} - key: ccache-${{matrix.os}}-${{matrix.type}}-${{env.BRANCH_NAME}} - restore-keys: ccache-${{matrix.os}}-${{matrix.type}}- - - name: Build on Xcode ${{matrix.xcode}} shell: bash id: build @@ -327,13 +317,6 @@ jobs: VCPKG_BINARY_SOURCES: 'clear;files,${{ steps.vcpkg-cache.outputs.path }},readwrite' run: .ci/compile.sh --server --test --ccache "$CCACHE_SIZE" - - name: Save compiler cache (ccache) - if: github.ref == 'refs/heads/master' - uses: actions/cache/save@v4 - with: - path: ${{env.CCACHE_DIR}} - key: ${{ steps.ccache_restore.outputs.cache-primary-key }} - - name: Sign app bundle if: matrix.make_package && (github.ref == 'refs/heads/master' || needs.configure.outputs.tag != null) env: