2020-08-22 23:04:57 +02:00
|
|
|
name: 🤖 Android Builds
|
2023-04-04 15:56:53 +02:00
|
|
|
on:
|
|
|
|
workflow_call:
|
2020-07-24 10:19:19 +02:00
|
|
|
|
2020-10-22 13:27:03 +02:00
|
|
|
# Global Settings
|
2020-07-24 10:19:19 +02:00
|
|
|
env:
|
2022-08-25 14:11:54 +02:00
|
|
|
# Only used for the cache key. Increment version to force clean build.
|
2021-04-19 14:37:47 +02:00
|
|
|
GODOT_BASE_BRANCH: 3.x
|
2021-09-01 17:26:01 +02:00
|
|
|
SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-android
|
|
|
|
cancel-in-progress: true
|
2020-07-24 10:19:19 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
android-template:
|
|
|
|
runs-on: "ubuntu-20.04"
|
|
|
|
name: Template (target=release, tools=no)
|
|
|
|
|
|
|
|
steps:
|
2023-09-04 16:05:38 +02:00
|
|
|
- uses: actions/checkout@v4
|
2020-07-24 10:19:19 +02:00
|
|
|
|
|
|
|
# Azure repositories are not reliable, we need to prevent azure giving us packages.
|
|
|
|
- name: Make apt sources.list use the default Ubuntu repositories
|
|
|
|
run: |
|
2020-10-22 13:27:03 +02:00
|
|
|
sudo rm -f /etc/apt/sources.list.d/*
|
2020-07-24 10:19:19 +02:00
|
|
|
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
|
|
|
|
sudo apt-get update
|
|
|
|
|
2024-01-25 18:20:33 +01:00
|
|
|
- name: Set up Java 17
|
2022-08-25 14:11:54 +02:00
|
|
|
uses: actions/setup-java@v3
|
2020-10-22 13:10:34 +02:00
|
|
|
with:
|
2022-08-25 14:11:54 +02:00
|
|
|
distribution: temurin
|
2024-01-25 18:20:33 +01:00
|
|
|
java-version: 17
|
2020-07-24 10:19:19 +02:00
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Setup Godot build cache
|
|
|
|
uses: ./.github/actions/godot-cache
|
2021-08-18 21:00:56 +02:00
|
|
|
continue-on-error: true
|
2020-07-24 10:19:19 +02:00
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Setup python and scons
|
|
|
|
uses: ./.github/actions/godot-deps
|
|
|
|
|
|
|
|
- name: Compilation (armv7)
|
|
|
|
uses: ./.github/actions/godot-build
|
2020-07-24 10:19:19 +02:00
|
|
|
with:
|
2021-09-01 17:26:01 +02:00
|
|
|
sconsflags: ${{ env.SCONSFLAGS }} android_arch=armv7
|
|
|
|
platform: android
|
|
|
|
target: release
|
|
|
|
tools: false
|
2020-07-24 10:19:19 +02:00
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Compilation (arm64v8)
|
|
|
|
uses: ./.github/actions/godot-build
|
|
|
|
with:
|
|
|
|
sconsflags: ${{ env.SCONSFLAGS }} android_arch=arm64v8
|
|
|
|
platform: android
|
|
|
|
target: release
|
|
|
|
tools: false
|
2020-07-24 10:19:19 +02:00
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Generate Godot templates
|
2020-07-24 10:19:19 +02:00
|
|
|
run: |
|
2020-10-22 13:10:34 +02:00
|
|
|
cd platform/android/java
|
|
|
|
./gradlew generateGodotTemplates
|
|
|
|
cd ../../..
|
2020-10-22 13:27:03 +02:00
|
|
|
ls -l bin/
|
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: ./.github/actions/upload-artifact
|