Skip to content

Commit b051f5f

Browse files
committed
Unset ANDROID_HOME to use ANDROID_NDK_ROOT in workflow
This makes the build use the default NDK from GitHub runner instead of "23.2.8568313" specified in godot-cpp
1 parent 45eebcb commit b051f5f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,18 @@ jobs:
2929
- platform: android
3030
arch: arm64
3131
target: template_release
32+
scons-args: android_api_level=21 ANDROID_HOME=""
3233
- platform: android
3334
arch: arm32
3435
target: template_debug
35-
scons-args: android_api_level=19
36+
scons-args: android_api_level=21 ANDROID_HOME=""
3637
- platform: android
3738
arch: arm32
3839
target: template_release
39-
scons-args: android_api_level=19
40+
scons-args: android_api_level=21 ANDROID_HOME=""
4041
- platform: android
4142
arch: x86_32
42-
scons-args: android_api_level=19
43+
scons-args: android_api_level=21 ANDROID_HOME=""
4344
steps:
4445
- uses: actions/checkout@v4
4546
with:

0 commit comments

Comments
 (0)