pandemonium_engine/.github/workflows/android_editor_builds.yml
Relintai 914c956b75 Backported Update Android dependencies for the project
- Update Java version from 11 to 17
- Update Android gradle plugin version from 7.2.1 to 8.2.0
- Update gradle version from 7.4.2 to 8.2
- Update target SDK from 33 to 34
- Update build tools version from 33.0.2 to 34.0.0
- Update kotlin version from 1.7.0 to 1.9.20
- Update Android fragment version from 1.3.6 to 1.6.2
- Update AndroidX window version from 1.0.0 to 1.2.0
- Update Nexus plugin version from 1.1.0 to 1.3.0
- m4gr3d
eba77be573
Unfortunately this raises the required java version to 17. On the flip side hovewer there is a new editor java home setting, and also the JAVA_HOME environment variable gets picked up.
2024-04-20 13:35:32 +02:00

67 lines
1.9 KiB
YAML

name: 🤖 Android Editor Builds
on: [push, pull_request]
# Global Settings
env:
PANDEMONIUM_BASE_BRANCH: master
SCONSFLAGS: verbose=yes warnings=all debug_symbols=no werror=yes
concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-android
cancel-in-progress: true
jobs:
android-editor:
runs-on: "ubuntu-20.04"
name: Android Editor (target=release_debug, tools=yes)
steps:
- uses: actions/checkout@v4
# Azure repositories are not reliable, we need to prevent azure giving us packages.
- name: Make apt sources.list use the default Ubuntu repositories
run: |
sudo rm -f /etc/apt/sources.list.d/*
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
sudo apt-get update
- name: Set up Java 17
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Setup Pandemonium build cache
uses: ./.github/actions/pandemonium-cache
continue-on-error: true
- name: Setup python and scons
uses: ./.github/actions/pandemonium-deps
- name: Compilation (armv7)
uses: ./.github/actions/pandemonium-build
with:
sconsflags: ${{ env.SCONSFLAGS }} android_arch=armv7
platform: android
target: release_debug
tools: true
- name: Compilation (arm64v8)
uses: ./.github/actions/pandemonium-build
with:
sconsflags: ${{ env.SCONSFLAGS }} android_arch=arm64v8
platform: android
target: release_debug
tools: true
- name: Generate Pandemonium Editor APK
run: |
cd platform/android/java
./gradlew generatePandemoniumEditor
cd ../../..
ls -l bin/
- name: Upload artifact
uses: ./.github/actions/upload-artifact