From 5739a37c7f3d330ea2231e4eeb02c6970bd559f8 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Fri, 26 Dec 2025 08:41:20 +0400 Subject: [PATCH] Cache ThirdParty together with Libraries on macOS --- .github/workflows/mac.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 745e7327d6..456fc0335a 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -76,19 +76,13 @@ jobs: sudo sed -i '' '/CMAKE_${lang}_FLAGS_DEBUG_INIT/s/ -g//' /opt/homebrew/share/cmake/Modules/Compiler/GNU.cmake - - name: ThirdParty cache. - id: cache-third-party - uses: actions/cache@v5 - with: - path: ThirdParty - key: ${{ runner.OS }}-third-party-${{ hashFiles(format('{0}/{1}', env.REPO_NAME, env.PREPARE_PATH)) }} - restore-keys: ${{ runner.OS }}-third-party- - - name: Libraries cache. id: cache-libs uses: actions/cache@v5 with: - path: Libraries + path: | + Libraries + ThirdParty key: ${{ runner.OS }}-libs-${{ hashFiles(format('{0}/{1}', env.REPO_NAME, env.PREPARE_PATH)) }} restore-keys: ${{ runner.OS }}-libs-