2020-10-24 18:41:20 +08:00
|
|
|
name: android
|
2020-10-23 21:59:01 +08:00
|
|
|
|
2021-07-04 22:05:36 +08:00
|
|
|
on:
|
|
|
|
push:
|
2021-07-07 02:39:53 +08:00
|
|
|
branches:
|
|
|
|
- dev
|
2023-07-15 00:54:20 +08:00
|
|
|
- main
|
2022-07-07 17:45:52 +08:00
|
|
|
|
2022-07-08 15:34:23 +08:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2022-07-15 18:51:17 +08:00
|
|
|
- 'docs/**'
|
2020-10-23 21:59:01 +08:00
|
|
|
env:
|
|
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
2021-12-31 12:12:40 +08:00
|
|
|
GH_OS_NAME: linux
|
2020-10-25 20:15:49 +08:00
|
|
|
BUILD_TARGET: android
|
|
|
|
BUILD_TYPE: Release
|
2020-10-23 21:59:01 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-07-07 10:52:45 +08:00
|
|
|
if: ${{ !startsWith(github.event.commits[0].message, 'Merge pull request') }}
|
2020-10-23 21:59:01 +08:00
|
|
|
# The CMake configure and build commands are platform agnostic and should work equally
|
|
|
|
# well on Windows or Mac. You can convert this to a matrix build if you need
|
|
|
|
# cross-platform coverage.
|
|
|
|
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
2022-08-18 09:13:09 +08:00
|
|
|
runs-on: ubuntu-latest
|
2020-10-23 21:59:01 +08:00
|
|
|
|
2021-06-05 01:30:49 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
arch:
|
2023-06-29 19:46:52 +08:00
|
|
|
- armv7
|
|
|
|
- arm64
|
2021-06-05 01:30:49 +08:00
|
|
|
- x86
|
2023-06-29 19:46:52 +08:00
|
|
|
- x64
|
2021-06-05 01:30:49 +08:00
|
|
|
env:
|
|
|
|
BUILD_ARCH: ${{ matrix.arch }}
|
|
|
|
|
2020-10-23 21:59:01 +08:00
|
|
|
steps:
|
2022-10-20 22:20:33 +08:00
|
|
|
- uses: actions/checkout@v3
|
2020-10-23 22:47:38 +08:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2022-01-28 15:27:17 +08:00
|
|
|
|
2022-10-20 22:20:33 +08:00
|
|
|
- uses: actions/setup-java@v3
|
2022-01-28 15:27:17 +08:00
|
|
|
with:
|
|
|
|
distribution: 'microsoft' # See 'Supported distributions' for available options
|
|
|
|
java-version: '11'
|
|
|
|
|
2020-10-23 21:59:01 +08:00
|
|
|
- name: Build
|
|
|
|
# Execute the build. You can specify a specific target with "--target <NAME>"
|
2023-06-29 19:46:52 +08:00
|
|
|
shell: pwsh
|
|
|
|
run: |
|
|
|
|
$AX_ROOT = $(Get-Location).Path
|
2023-07-01 08:52:14 +08:00
|
|
|
./build.ps1 -p android -a $env:BUILD_ARCH
|
2023-01-12 13:04:38 +08:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-01-14 08:24:55 +08:00
|
|
|
name: ${{ matrix.arch }}
|
2023-01-12 13:04:38 +08:00
|
|
|
path: |
|
|
|
|
templates/**/*.apk
|
|
|
|
tests/**/*.apk
|