File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 50
50
swift-version : ['release', 'devel', 'trunk']
51
51
runs-on : ubuntu-24.04
52
52
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
53
71
- name : Checkout repository
54
72
uses : actions/checkout@v4
55
73
- name : Install Dependencies
@@ -122,7 +140,9 @@ jobs:
122
140
- name : Cleanup
123
141
run : |
124
142
# need to free up some space or else when installing we get: No space left on device
143
+ df -h
125
144
rm -rf ${{ runner.temp }}/swift-android-sdk/{build,src}
145
+ df -h
126
146
- name : Install artifactbundle
127
147
shell : bash
128
148
run : |
You can’t perform that action at this time.
0 commit comments