-
-
Notifications
You must be signed in to change notification settings - Fork 73
35 lines (29 loc) · 717 Bytes
/
android_ci.yml
File metadata and controls
35 lines (29 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Android
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
# Android(aarch64) build
build-android:
runs-on: ubuntu-latest
name: Build for Android(arm64v8a)
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Show android sdk root
run: |
env | grep ANDROID
echo $ANDROID_SDK_ROOT
- name: Setup
run: |
sudo apt-get install -y ninja-build tree
- name: Show android sdk details
run: |
tree $ANDROID_SDK_ROOT
- name: CmakeAndBuild
run: |
./scripts/bootstrap-android-cmake-linux.sh
cd build-android
ninja -v