Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable ccache for iOS #131

Merged
merged 2 commits into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 17 additions & 9 deletions .github/workflows/iOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
matrix:
include:
- qt_version: 6.5.3
preset: iOS-ccache
preset: iOS
- qt_version: 6.6.3
preset: iOS-ccache
preset: iOS
- qt_version: 6.7.2
preset: iOS-ccache
preset: iOS

env:
PRESET: ${{ matrix.preset }}
Expand All @@ -64,6 +64,20 @@ jobs:
submodules: recursive
fetch-depth: 0

- name: Recover disk space
run: |
df -h
ls /Applications
brew uninstall google-chrome
sudo rm -rf /Users/runner/Library/Android
sudo rm -rf /Applications/Xcode_14*
sudo rm -rf /Applications/Xcode_15.0*
sudo rm -rf /Applications/Xcode_15.1*
sudo rm -rf /Applications/Xcode_15.2*
sudo rm -rf /Applications/Xcode_15.3*
ls /Applications
df -h

- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
Expand All @@ -80,12 +94,6 @@ jobs:
- name: Setup ninja
uses: seanmiddleditch/gha-setup-ninja@v5

- name: Set up ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: iOS_${{ matrix.qt_version }}
max-size: 200M

- name: Build
working-directory: source
run: |
Expand Down
Loading