2020-08-22 21:04:57 +00:00
|
|
|
name: 🤖 Android Builds
|
2023-04-04 13:56:53 +00:00
|
|
|
on:
|
|
|
|
workflow_call:
|
2020-07-15 21:57:23 +00:00
|
|
|
|
2020-10-09 20:18:51 +00:00
|
|
|
# Global Settings
|
2020-07-15 21:57:23 +00:00
|
|
|
env:
|
2023-05-18 14:22:25 +00:00
|
|
|
# Used for the cache key. Add version suffix to force clean build.
|
2020-07-24 06:20:42 +00:00
|
|
|
GODOT_BASE_BRANCH: master
|
2024-08-29 15:33:29 +00:00
|
|
|
SCONSFLAGS: verbose=yes warnings=extra werror=yes debug_symbols=no module_text_server_fb_enabled=yes strict_checks=yes
|
2020-07-15 21:57:23 +00:00
|
|
|
|
2021-08-24 18:49:06 +00:00
|
|
|
concurrency:
|
2024-07-08 15:41:20 +00:00
|
|
|
group: ci-${{ github.actor }}-${{ github.head_ref || github.run_number }}-${{ github.ref }}-android
|
2021-08-24 18:49:06 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-15 21:57:23 +00:00
|
|
|
jobs:
|
2024-06-24 13:20:50 +00:00
|
|
|
build-android:
|
2024-07-08 15:41:20 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2024-06-24 13:20:50 +00:00
|
|
|
name: ${{ matrix.name }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- name: Editor (target=editor)
|
|
|
|
cache-name: android-editor
|
|
|
|
target: editor
|
|
|
|
tests: false
|
|
|
|
sconsflags: arch=arm64 production=yes
|
|
|
|
|
|
|
|
- name: Template arm32 (target=template_release, arch=arm32)
|
|
|
|
cache-name: android-template-arm32
|
|
|
|
target: template_release
|
|
|
|
tests: false
|
|
|
|
sconsflags: arch=arm32
|
|
|
|
|
|
|
|
- name: Template arm64 (target=template_release, arch=arm64)
|
|
|
|
cache-name: android-template-arm64
|
|
|
|
target: template_release
|
|
|
|
tests: false
|
|
|
|
sconsflags: arch=arm64
|
2020-07-15 21:57:23 +00:00
|
|
|
|
|
|
|
steps:
|
2024-07-08 15:41:20 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
2024-03-16 02:52:47 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-07-15 21:57:23 +00:00
|
|
|
|
2023-10-17 18:01:36 +00:00
|
|
|
- name: Set up Java 17
|
2024-02-22 15:22:54 +00:00
|
|
|
uses: actions/setup-java@v4
|
2020-10-22 11:10:34 +00:00
|
|
|
with:
|
2022-08-25 11:44:22 +00:00
|
|
|
distribution: temurin
|
2023-10-17 18:01:36 +00:00
|
|
|
java-version: 17
|
2020-07-15 21:57:23 +00:00
|
|
|
|
2024-07-13 13:50:30 +00:00
|
|
|
- name: Restore Godot build cache
|
|
|
|
uses: ./.github/actions/godot-cache-restore
|
2024-06-24 13:20:50 +00:00
|
|
|
with:
|
|
|
|
cache-name: ${{ matrix.cache-name }}
|
2021-08-18 19:00:56 +00:00
|
|
|
continue-on-error: true
|
2020-07-15 21:57:23 +00:00
|
|
|
|
2024-05-17 07:28:56 +00:00
|
|
|
- name: Setup Python and SCons
|
2021-09-01 15:26:01 +00:00
|
|
|
uses: ./.github/actions/godot-deps
|
|
|
|
|
2024-06-24 13:20:50 +00:00
|
|
|
- name: Compilation
|
2021-09-01 15:26:01 +00:00
|
|
|
uses: ./.github/actions/godot-build
|
|
|
|
with:
|
2024-06-24 13:20:50 +00:00
|
|
|
sconsflags: ${{ env.SCONSFLAGS }} ${{ matrix.sconsflags }}
|
2021-09-01 15:26:01 +00:00
|
|
|
platform: android
|
2024-06-24 13:20:50 +00:00
|
|
|
target: ${{ matrix.target }}
|
|
|
|
tests: ${{ matrix.tests }}
|
2020-07-24 06:20:42 +00:00
|
|
|
|
2024-07-13 13:50:30 +00:00
|
|
|
- name: Save Godot build cache
|
|
|
|
uses: ./.github/actions/godot-cache-save
|
|
|
|
with:
|
|
|
|
cache-name: ${{ matrix.cache-name }}
|
|
|
|
continue-on-error: true
|
|
|
|
|
2021-09-01 15:26:01 +00:00
|
|
|
- name: Generate Godot templates
|
2024-06-24 13:20:50 +00:00
|
|
|
if: matrix.target == 'template_release'
|
2020-07-15 21:57:23 +00:00
|
|
|
run: |
|
2020-10-22 11:10:34 +00:00
|
|
|
cd platform/android/java
|
|
|
|
./gradlew generateGodotTemplates
|
|
|
|
cd ../../..
|
2020-10-15 17:50:49 +00:00
|
|
|
ls -l bin/
|
2020-09-29 21:42:41 +00:00
|
|
|
|
2024-06-24 13:20:50 +00:00
|
|
|
- name: Generate Godot editor
|
|
|
|
if: matrix.target == 'editor'
|
|
|
|
run: |
|
|
|
|
cd platform/android/java
|
|
|
|
./gradlew generateGodotEditor
|
2024-09-13 15:53:29 +00:00
|
|
|
./gradlew generateGodotHorizonOSEditor
|
2024-06-24 13:20:50 +00:00
|
|
|
cd ../../..
|
|
|
|
ls -l bin/android_editor_builds/
|
|
|
|
|
2021-09-01 15:26:01 +00:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: ./.github/actions/upload-artifact
|
2024-06-24 13:20:50 +00:00
|
|
|
with:
|
|
|
|
name: ${{ matrix.cache-name }}
|