- Pulled the android continuous workflow into an action - Split the android continuous build into 3 ABIs armv7, armv8a, and x86_64 (note that x86 is not present). - Remove the upload artifacts step from previous workflow. This was meant for letting client try a tip-of-tree Android build. We can revisit this later. (Also removed mention in README.md) - Split the android continous into debug build and a release build commands, enabling deletion of intermediate output directory.
43 lines
870 B
YAML
43 lines
870 B
YAML
name: Android
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release
|
|
- rc/**
|
|
|
|
jobs:
|
|
build-android-armv7:
|
|
name: build-android-armv7
|
|
runs-on: macos-14
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.1.6
|
|
- name: Run Android Continuous
|
|
uses: ./.github/actions/android-continuous
|
|
with:
|
|
build-abi: armeabi-v7a
|
|
|
|
build-android-armv8a:
|
|
name: build-android-armv8a
|
|
runs-on: macos-14
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.1.6
|
|
- name: Run Android Continuous
|
|
uses: ./.github/actions/android-continuous
|
|
with:
|
|
build-abi: arm64-v8a
|
|
|
|
build-android-x86_64:
|
|
name: build-android-x86_64
|
|
runs-on: macos-14
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.1.6
|
|
- name: Run Android Continuous
|
|
uses: ./.github/actions/android-continuous
|
|
with:
|
|
build-abi: x86_64
|