ci: removed caching for ldid and xcbeautify coz they take much more time to restore than install

This commit is contained in:
mahee96
2026-02-24 20:32:02 +05:30
parent b91bcee70f
commit 967b9f7572
2 changed files with 2 additions and 27 deletions

View File

@@ -31,19 +31,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache@v4
with:
path: |
/opt/homebrew/Cellar
/opt/homebrew/Homebrew
/opt/homebrew/Library
~/Library/Caches/Homebrew
key: brew-${{ runner.os }}-ldid-xcbeautify-v1
- name: brew install ldid and xcbeautify
run: |
brew list ldid >/dev/null 2>&1 || brew install ldid
brew list xcbeautify >/dev/null 2>&1 || brew install xcbeautify
- run: brew install ldid && xcbeautify
# --------------------------------------------------
# runtime env setup

View File

@@ -52,20 +52,7 @@ jobs:
)
echo "should_skip=$SHOULD_SKIP" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
if: steps.build_gate.outputs.should_skip != 'true'
with:
path: |
/opt/homebrew/Cellar
/opt/homebrew/Homebrew
/opt/homebrew/Library
~/Library/Caches/Homebrew
key: brew-${{ runner.os }}-ldid-xcbeautify-v1
- name: brew install ldid and xcbeautify
run: |
brew list ldid >/dev/null 2>&1 || brew install ldid
brew list xcbeautify >/dev/null 2>&1 || brew install xcbeautify
- run: brew install ldid && xcbeautify
if: steps.build_gate.outputs.should_skip != 'true'
# --------------------------------------------------