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 Oct 1, 2024
1 parent 64aaaaf commit d25f495
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,24 @@ jobs:
- name: Build cross
run: |
./build-apple.sh
android:
name: Android
runs-on: ubuntu-22.04
if: github.event_name != 'release'
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
llvm:
name: LLVM
runs-on: ubuntu-22.04
Expand Down

0 comments on commit d25f495

Please sign in to comment.