2020-08-22 23:04:57 +02:00
|
|
|
name: 🤖 Android Builds
|
2020-07-15 23:57:23 +02:00
|
|
|
on: [push, pull_request]
|
|
|
|
|
2020-10-09 22:18:51 +02:00
|
|
|
# Global Settings
|
2020-07-15 23:57:23 +02:00
|
|
|
env:
|
2022-03-23 08:04:46 +01:00
|
|
|
# Only used for the cache key. Increment version to force clean build.
|
2020-07-24 08:20:42 +02:00
|
|
|
GODOT_BASE_BRANCH: master
|
2021-09-01 17:26:01 +02:00
|
|
|
SCONSFLAGS: verbose=yes warnings=extra werror=yes debug_symbols=no module_text_server_fb_enabled=yes
|
2020-07-15 23:57:23 +02:00
|
|
|
|
2021-08-24 20:49:06 +02:00
|
|
|
concurrency:
|
2021-08-25 15:04:05 +02:00
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-android
|
2021-08-24 20:49:06 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-15 23:57:23 +02:00
|
|
|
jobs:
|
|
|
|
android-template:
|
|
|
|
runs-on: "ubuntu-20.04"
|
2020-07-24 08:20:42 +02:00
|
|
|
name: Template (target=release, tools=no)
|
2020-07-15 23:57:23 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
# 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-08-11 17:14:47 +02:00
|
|
|
sudo rm -f /etc/apt/sources.list.d/*
|
2020-07-15 23:57:23 +02:00
|
|
|
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
|
|
|
|
sudo apt-get update
|
|
|
|
|
2021-10-09 16:27:11 +02:00
|
|
|
- name: Set up Java 11
|
2020-10-22 13:10:34 +02:00
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
2021-10-09 16:27:11 +02:00
|
|
|
java-version: 11
|
2020-07-15 23:57:23 +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-15 23:57:23 +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-15 23:57:23 +02:00
|
|
|
with:
|
2021-09-01 17:26:01 +02:00
|
|
|
sconsflags: ${{ env.SCONSFLAGS }} android_arch=armv7
|
|
|
|
platform: android
|
|
|
|
target: release
|
|
|
|
tools: false
|
|
|
|
tests: false
|
2020-07-15 23:57:23 +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
|
|
|
|
tests: false
|
2020-07-24 08:20:42 +02:00
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Generate Godot templates
|
2020-07-15 23:57:23 +02:00
|
|
|
run: |
|
2020-10-22 13:10:34 +02:00
|
|
|
cd platform/android/java
|
|
|
|
./gradlew generateGodotTemplates
|
|
|
|
cd ../../..
|
2020-10-15 19:50:49 +02:00
|
|
|
ls -l bin/
|
2020-09-29 23:42:41 +02:00
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: ./.github/actions/upload-artifact
|