ci: clear xcode cache for self-hosted runner

This commit is contained in:
Stephen Zhou 2025-03-31 10:56:13 +08:00
parent 25a87a90d7
commit cb73dfd7e1
No known key found for this signature in database
2 changed files with 10 additions and 0 deletions

View File

@ -66,6 +66,11 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Clear Xcode cache
if: needs.check-runner.outputs.runner-label == 'self-hosted'
run: |
rm -rf ~/Library/Developer/Xcode/DerivedData
- name: 🔨 Build iOS IPA
run: |
cd apps/mobile

View File

@ -73,6 +73,11 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Clear Xcode cache
if: needs.check-runner.outputs.runner-label == 'self-hosted'
run: |
rm -rf ~/Library/Developer/Xcode/DerivedData
- name: 🔨 Build iOS IPA
run: |
cd apps/mobile