We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b77dd49 commit 957de31Copy full SHA for 957de31
1 file changed
.github/workflows/build-android.yml
@@ -28,6 +28,24 @@ jobs:
28
with:
29
submodules: recursive
30
31
+ # Problem: there is only 14 GB of disk space available on GitHub runners
32
+ # Solution: free up space by removing unneeded files
33
+ - name: Freeup space
34
+ run: |
35
+ df -h
36
+ echo "Removing hosted toolcache..."
37
+ sudo rm -rf /opt/hostedtoolcache || true
38
+
39
+ echo "Removing .NET..."
40
+ sudo rm -rf /usr/share/dotnet || true
41
42
+ echo "Removing GHC / Haskell..."
43
+ sudo rm -rf /opt/ghc || true
44
+ sudo rm -rf /usr/local/.ghcup || true
45
46
47
48
49
- name: Setup Bun
50
uses: oven-sh/setup-bun@v2
51
0 commit comments