File tree Expand file tree Collapse file tree 3 files changed +29
-12
lines changed
Expand file tree Collapse file tree 3 files changed +29
-12
lines changed Original file line number Diff line number Diff line change 1212 name : Build Android - BabylonNative ${{ github.event.client_payload.sha }}
1313 runs-on : macos-latest
1414 steps :
15+ - name : Free space
16+ uses : ./.github/workflows/macos_freespace
1517 - name : Checkout Repo
16181719 with :
5153 name : Build iOS - BabylonNative ${{ github.event.client_payload.sha }}
5254 runs-on : macos-latest
5355 steps :
56+ - name : Free space
57+ uses : ./.github/workflows/macos_freespace
5458 - name : Checkout Repo
55595660 with :
Original file line number Diff line number Diff line change 1+ name : Free up disk space
2+ description : Free up disk space see https://github.com/actions/runner-images/issues/10511
3+ runs :
4+ steps :
5+ - name : Free up disk space
6+ shell : bash
7+ run : |
8+ xcrun simctl delete all
9+ sudo rm -rf ~/Library/Developer/CoreSimulator/Caches/*
10+ sudo rm -rf /Applications/Xcode_14.3.1.app
11+ sudo rm -rf /Applications/Xcode_15.0.1.app
12+ sudo rm -rf /Applications/Xcode_15.1.app
13+ sudo rm -rf /Applications/Xcode_15.2.app
14+ sudo rm -rf /Applications/Xcode_15.3.app
Original file line number Diff line number Diff line change 1010 build-android :
1111 runs-on : macos-latest
1212 steps :
13+ - name : Free space
14+ uses : ./.github/workflows/macos_freespace
1315 - name : Checkout Repo
14161517 with :
2628 run : brew install ninja
2729
2830 - name : Free up disk space
29- shell : bash
30- run : |
31- df -h
32- xcrun simctl delete all
33- sudo rm -rf ~/Library/Developer/CoreSimulator/Caches/*
34- sudo rm -rf /Applications/Xcode_14.3.1.app
35- sudo rm -rf /Applications/Xcode_15.0.1.app
36- sudo rm -rf /Applications/Xcode_15.1.app
37- sudo rm -rf /Applications/Xcode_15.2.app
38- sudo rm -rf /Applications/Xcode_15.3.app
39- df -h
40-
31+ uses : ./.github/workflows/macos_freespace
4132 - name : NPM Install (Playground)
4233 run : npm install
4334 working-directory : ./Apps/Playground
6253 build-android-rnta :
6354 runs-on : macos-latest
6455 steps :
56+ - name : Free space
57+ uses : ./.github/workflows/macos_freespace
6558 - name : Checkout Repo
66596760 with :
10093 build-iOS :
10194 runs-on : macos-latest
10295 steps :
96+ - name : Free space
97+ uses : ./.github/workflows/macos_freespace
10398 - name : Checkout Repo
10499105100 with :
@@ -124,6 +119,8 @@ jobs:
124119 build-iOS-rnta :
125120 runs-on : macos-latest
126121 steps :
122+ - name : Free space
123+ uses : ./.github/workflows/macos_freespace
127124 - name : Checkout Repo
128125129126 with :
@@ -149,6 +146,8 @@ jobs:
149146 test-publish-android-ios :
150147 runs-on : macos-latest
151148 steps :
149+ - name : Free space
150+ uses : ./.github/workflows/macos_freespace
152151 - name : Checkout Repo
153152154153 with :
You can’t perform that action at this time.
0 commit comments