godot/.github/workflows/android_builds.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.9 KiB
YAML
Raw Normal View History

name: 🤖 Android Builds
2020-07-15 21:57:23 +00:00
on: [push, pull_request]
# Global Settings
2020-07-15 21:57:23 +00:00
env:
# Only used for the cache key. Increment version to force clean build.
GODOT_BASE_BRANCH: master
SCONSFLAGS: verbose=yes warnings=extra werror=yes debug_symbols=no module_text_server_fb_enabled=yes
2020-07-15 21:57:23 +00:00
concurrency:
2021-08-25 13:04:05 +00:00
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-android
cancel-in-progress: true
2020-07-15 21:57:23 +00:00
jobs:
android-template:
runs-on: "ubuntu-20.04"
name: Template (target=release, tools=no)
2020-07-15 21:57:23 +00:00
steps:
- uses: actions/checkout@v3
2020-07-15 21:57:23 +00: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: |
sudo rm -f /etc/apt/sources.list.d/*
2020-07-15 21:57:23 +00:00
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
sudo apt-get update
2021-10-09 14:27:11 +00:00
- name: Set up Java 11
uses: actions/setup-java@v3
with:
distribution: temurin
2021-10-09 14:27:11 +00:00
java-version: 11
2020-07-15 21:57:23 +00:00
- name: Setup Godot build cache
uses: ./.github/actions/godot-cache
continue-on-error: true
2020-07-15 21:57:23 +00:00
- name: Setup python and scons
uses: ./.github/actions/godot-deps
- name: Compilation (arm32)
uses: ./.github/actions/godot-build
2020-07-15 21:57:23 +00:00
with:
sconsflags: ${{ env.SCONSFLAGS }} arch=arm32
platform: android
target: release
tools: false
tests: false
2020-07-15 21:57:23 +00:00
- name: Compilation (arm64)
uses: ./.github/actions/godot-build
with:
sconsflags: ${{ env.SCONSFLAGS }} arch=arm64
platform: android
target: release
tools: false
tests: false
- name: Generate Godot templates
2020-07-15 21:57:23 +00:00
run: |
cd platform/android/java
./gradlew generateGodotTemplates
cd ../../..
ls -l bin/
- name: Upload artifact
uses: ./.github/actions/upload-artifact