Add CI Android build github action (#15358)

This commit is contained in:
Bernhard Schelling 2023-06-08 03:18:32 +09:00 committed by GitHub
parent 43dd4ee97b
commit fd99da3ac2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

34
.github/workflows/Android.yml vendored Normal file
View file

@ -0,0 +1,34 @@
name: CI Android
on:
push:
pull_request:
repository_dispatch:
types: [run_build]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Compile RA
run: |
cd pkg/android/phoenix
./gradlew assembleDebug
find . -iname "*.apk" -exec ls -l "{}" \;
- name: Get short SHA
id: slug
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
- uses: actions/upload-artifact@v3
with:
name: retroarch-android-${{ steps.slug.outputs.sha8 }}
path: |
pkg/android/phoenix/build/outputs/apk/normal/debug/phoenix-normal-debug.apk
pkg/android/phoenix/build/outputs/apk/aarch64/debug/phoenix-aarch64-debug.apk