-
Notifications
You must be signed in to change notification settings - Fork 10
63 lines (50 loc) · 1.7 KB
/
android_editor_builds.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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-24.04"
name: Android Editor (target=release_debug, tools=yes)
steps:
- uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Restore Pandemonium build cache
uses: ./.github/actions/pandemonium-cache-restore
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: Save Pandemonium build cache
uses: ./.github/actions/pandemonium-cache-save
continue-on-error: 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