Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
run: |
cd godot
scons p=android arch=arm32 ${BUILD_OPTIONS} target=template_debug
scons p=android arch=arm64 ${BUILD_OPTIONS} target=template_debug generate_apk=yes
scons p=android arch=arm64 ${BUILD_OPTIONS} target=template_debug generate_android_binaries=yes
mkdir -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/
mv ./bin/android_debug.apk ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_debug.apk
mv ./bin/android_source.zip ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_source.zip
Expand All @@ -107,10 +107,10 @@ jobs:
name: Build Godot release template for Android
run: |
cd godot
scons p=android arch=x86_32 ${BUILD_OPTIONS} target=template_release
scons p=android arch=x86_64 ${BUILD_OPTIONS} target=template_release
scons p=android arch=arm32 ${BUILD_OPTIONS} target=template_release
scons p=android arch=arm64 ${BUILD_OPTIONS} target=template_release generate_apk=yes
scons p=android arch=x86_32 ${BUILD_OPTIONS} target=template_release debug_symbols=yes
scons p=android arch=x86_64 ${BUILD_OPTIONS} target=template_release debug_symbols=yes
scons p=android arch=arm32 ${BUILD_OPTIONS} target=template_release debug_symbols=yes
scons p=android arch=arm64 ${BUILD_OPTIONS} target=template_release debug_symbols=yes separate_debug_symbols=yes generate_android_binaries=yes
mkdir -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/
mv ./bin/android_release.apk ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_release.apk
mv ./bin/android_source.zip ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_source.zip
Expand Down Expand Up @@ -176,3 +176,11 @@ jobs:
path: vectortouch/artifacts/VectorTouch.aab
if-no-files-found: ignore
retention-days: 28

- name: Upload debug symbols
uses: actions/upload-artifact@v4
with:
name: native_debug_symbols.zip
path: godot/bin/android-template-release-native-symbols.zip
if-no-files-found: ignore
retention-days: 28
10 changes: 5 additions & 5 deletions export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ custom_template/release=""
gradle_build/use_gradle_build=true
gradle_build/gradle_build_directory=""
gradle_build/android_source_template=""
gradle_build/compress_native_libraries=false
gradle_build/compress_native_libraries=true
gradle_build/export_format=0
gradle_build/min_sdk=""
gradle_build/target_sdk=""
Expand All @@ -37,8 +37,8 @@ architectures/armeabi-v7a=true
architectures/arm64-v8a=true
architectures/x86=false
architectures/x86_64=false
version/code=7
version/name="1.0-alpha4"
version/code=11
version/name="1.0-alpha5-dev"
package/unique_name="com.vectortouch.app"
package/name="VectorTouch"
package/signed=true
Expand Down Expand Up @@ -262,8 +262,8 @@ architectures/armeabi-v7a=true
architectures/arm64-v8a=true
architectures/x86=true
architectures/x86_64=true
version/code=7
version/name="1.0-alpha4"
version/code=11
version/name="1.0-alpha5-dev"
package/unique_name="com.vectortouch.app"
package/name="VectorTouch"
package/signed=true
Expand Down
Loading