Skip to content

Commit c6e8f24

Browse files
committed
Swift Android build 6.2
1 parent 829bce6 commit c6e8f24

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,24 @@ jobs:
5050
swift-version: ['release', 'devel', 'trunk']
5151
runs-on: ubuntu-24.04
5252
steps:
53+
free-disk-space:
54+
runs-on: ubuntu-latest
55+
steps:
56+
# need to free up some space or we can run out when building
57+
- name: Free Disk Space
58+
uses: jlumbroso/free-disk-space@main
59+
with:
60+
# this might remove tools that are actually needed,
61+
# if set to "true" but frees about 6 GB
62+
tool-cache: false
63+
# all of these default to true, but feel free to set to
64+
# "false" if necessary for your workflow
65+
android: true
66+
dotnet: true
67+
haskell: true
68+
large-packages: true
69+
docker-images: true
70+
swap-storage: true
5371
- name: Checkout repository
5472
uses: actions/checkout@v4
5573
- name: Install Dependencies
@@ -122,7 +140,9 @@ jobs:
122140
- name: Cleanup
123141
run: |
124142
# need to free up some space or else when installing we get: No space left on device
143+
df -h
125144
rm -rf ${{ runner.temp }}/swift-android-sdk/{build,src}
145+
df -h
126146
- name: Install artifactbundle
127147
shell: bash
128148
run: |

0 commit comments

Comments
 (0)