Skip to content

Commit

Permalink
[BUGFIX] Remove zstd after cache download
Browse files Browse the repository at this point in the history
  • Loading branch information
mjonuschat authored Dec 28, 2024
1 parent cbc37e1 commit b179b77
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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 }}
Expand Down

0 comments on commit b179b77

Please sign in to comment.