Skip to content

Commit 5450614

Browse files
committed
Add disk space management step in Android bindings release workflow
- Introduced a new step to free disk space in the GitHub Actions workflow for Android bindings, optimizing resource usage during the build process. - Configured options to manage tool cache, .NET, Haskell, large packages, Docker images, and swap storage. These changes enhance the efficiency of the build process by ensuring adequate disk space is available, contributing to smoother CI/CD operations. Signed-off-by: Pushkar Mishra <[email protected]>
1 parent aa23fa0 commit 5450614

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/arkdrop-android-bindings-release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ jobs:
2121
working-directory: ./drop-core/uniffi/bindings/android
2222

2323
steps:
24+
- name: Free Disk Space
25+
uses: jlumbroso/free-disk-space@main
26+
with:
27+
tool-cache: false
28+
android: false
29+
dotnet: true
30+
haskell: true
31+
large-packages: true
32+
docker-images: true
33+
swap-storage: true
34+
2435
- uses: actions/checkout@v4
2536
- uses: Swatinem/rust-cache@v2
2637

0 commit comments

Comments
 (0)