Skip to content

Commit 547739c

Browse files
committed
Trying to free up space before building for ubuntu
1 parent b33512c commit 547739c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@ jobs:
3030
distribution: 'zulu'
3131
java-version: 21
3232

33+
- name: Maximize Build Space (ubuntu/mac)
34+
if: ${{ matrix.os != 'windows-latest'}}
35+
run: |
36+
sudo rm -rf /usr/share/dotnet
37+
sudo rm -rf /usr/local/lib/android
38+
sudo rm -rf /opt/ghc
39+
3340
- name: Set up Haxe
3441
uses: krdlab/setup-haxe@v1
3542
with:
@@ -63,3 +70,4 @@ jobs:
6370
if: ${{ matrix.os != 'windows-latest'}}
6471
run: ./gradlew clean test buildPlugin verifyPlugin
6572

73+

0 commit comments

Comments
 (0)