Skip to content

Commit

Permalink
Add CI for android (#1531)
Browse files Browse the repository at this point in the history
  • Loading branch information
res0nance authored Aug 22, 2023
1 parent dcecd03 commit 914764c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: android build

on: [push]

jobs:

android:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
abi: [armeabi-v7a, arm64-v8a, x86, x86_64]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build project
run: ./scripts/build-android.sh $ANDROID_NDK_HOME -a ${{ matrix.abi }}
Empty file modified scripts/build-android.sh
100644 → 100755
Empty file.

0 comments on commit 914764c

Please sign in to comment.