Skip to content

Commit

Permalink
CI: Add android checker.
Browse files Browse the repository at this point in the history
  • Loading branch information
heiher committed Sep 30, 2024
1 parent 8f54c0f commit d1c08b3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,20 @@ jobs:
- name: Build
run: |
make CC=clang ENABLE_STATIC=1 -j`nproc`
android:
name: Android
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: true
- name: Prepare
run: |
wget https://dl.google.com/android/repository/android-ndk-r27b-linux.zip
unzip android-ndk-r27b-linux.zip
ln -sf . jni
- name: Build
run: |
./android-ndk-r27b/ndk-build

0 comments on commit d1c08b3

Please sign in to comment.