mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
fix(ci): don't install unused packages for android builds (#9576)
The runner doing the Android builds is running out of disk space. Since we don't use the emulator, adb, or other tools for the build, we can save some space by not installing these. Related: https://github.com/firezone/firezone/actions/runs/15742063800
This commit is contained in:
4
.github/actions/setup-android/action.yml
vendored
4
.github/actions/setup-android/action.yml
vendored
@@ -16,6 +16,10 @@ runs:
|
||||
- uses: gradle/actions/setup-gradle@8379f6a1328ee0e06e2bb424dadb7b159856a326 # v4.4.0
|
||||
|
||||
- uses: android-actions/setup-android@9fc6c4e9069bf8d3d10b2204b1fb8f6ef7065407 # v3.2.2
|
||||
with:
|
||||
# By default tools and platform-tools are installed, which we don't use currently
|
||||
# These consume lots of disk space
|
||||
packages: ""
|
||||
|
||||
- name: Install NDK
|
||||
run: sdkmanager "ndk;28.1.13356709" # Must match `kotlin/android/app/build.gradle.kts`
|
||||
|
||||
Reference in New Issue
Block a user