macOS: fix GH actions cache (#29399)

Add lz4 and xz to dep cache exceptions
old-commit-hash: ae649ec68d670cb2d90773906665695807e4dc2e
This commit is contained in:
Kacper Rączy
2023-08-14 16:13:35 -07:00
committed by GitHub
parent 6be9e66073
commit 4096be66e4
+2 -1
View File
@@ -173,8 +173,9 @@ jobs:
if: steps.dependency-cache.outputs.cache-hit != 'true'
run: |
new_cellar=$(brew list --formula -1)
exceptions="zstd lz4 xz" # caching step needs zstd
comm -12 <(echo "$EXISTING_CELLAR") <(echo "$new_cellar") | while read pkg; do
if [[ $pkg != "zstd" ]]; then # caching step needs zstd
if [[ " $exceptions " != *" $pkg "* ]]; then
rm -rf "$(brew --cellar)/$pkg"
fi
done