From b179b77c892cc34c6a79ba8caca6b79326a9e295 Mon Sep 17 00:00:00 2001 From: Morton Jonuschat Date: Fri, 27 Dec 2024 23:53:21 -0800 Subject: [PATCH] [BUGFIX] Remove zstd after cache download --- .github/workflows/build_macos.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build_macos.yml b/.github/workflows/build_macos.yml index 1438829e30f..21616ea99aa 100644 --- a/.github/workflows/build_macos.yml +++ b/.github/workflows/build_macos.yml @@ -36,6 +36,19 @@ jobs: echo "ver_pure=$ver_pure" >> $GITHUB_ENV echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV shell: bash + + - name: Determine Cache Keys + id: cache-keys + run: | + echo cache-path=${{ github.workspace }}/deps/build_${{ matrix.arch }}/PrusaSlicer_dep_${{ matrix.arch }} >> "$GITHUB_OUTPUT" + echo cache-key=${{ runner.os }}_${{ matrix.arch }}-cache-Prusaslicer_deps-build-${{ hashFiles('deps/**') }} >> "$GITHUB_OUTPUT" + + - name: Cache build dependencies + id: cache-build-deps + uses: actions/cache@v4 + with: + path: ${{ steps.cache-keys.outputs.cache-path }} + key: ${{ steps.cache-keys.outputs.cache-key }} - name: Install texinfo run: | @@ -51,19 +64,6 @@ jobs: run: | brew uninstall --ignore-dependencies zstd - - name: Determine Cache Keys - id: cache-keys - run: | - echo cache-path=${{ github.workspace }}/deps/build_${{ matrix.arch }}/PrusaSlicer_dep_${{ matrix.arch }} >> "$GITHUB_OUTPUT" - echo cache-key=${{ runner.os }}_${{ matrix.arch }}-cache-Prusaslicer_deps-build-${{ hashFiles('deps/**') }} >> "$GITHUB_OUTPUT" - - - name: Cache build dependencies - id: cache-build-deps - uses: actions/cache@v4 - with: - path: ${{ steps.cache-keys.outputs.cache-path }} - key: ${{ steps.cache-keys.outputs.cache-key }} - - name: Build PrusaSlicer (BOSS) ${{ matrix.arch }} Dependencies if: steps.cache-build-deps.outputs.cache-hit != 'true' working-directory: ${{ github.workspace }}