forked from xmake-io/xmake-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (43 loc) 路 1.45 KB
/
Copy pathandroid.yml
File metadata and controls
51 lines (43 loc) 路 1.45 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Android
on:
pull_request:
branches:
- dev
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
arch: [armeabi-v7a, arm64-v8a]
ndk: ["r22", "r27"]
ndk_sdkver: ["21", "30"]
runs-on: ${{ matrix.os }}
concurrency:
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Android-${{ matrix.arch }}-${{ matrix.ndk }}-${{ matrix.ndk_sdkver }}
cancel-in-progress: true
steps:
- name: Cache ndk
id: cache-ndk
uses: actions/cache@v4
with:
path: ~/.xmake/packages/n/ndk
key: ${{ matrix.os }}-ndk
- uses: actions/checkout@v1
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: branch@master
actions-cache-folder: ".xmake-cache"
actions-cache-key: "android"
- name: Set up system dependencies
run: sudo apt-get update && sudo apt-get install -y gcc-multilib g++-multilib
- name: Tests
env:
ANDROID_NDK_ROOT: ""
ANDROID_NDK_HOME: ""
run: |
if test ${{ matrix.ndk }} = "r27"; then
xrepo env -y -b "ndk 27" xmake l ./scripts/test.lua -D -p android -a ${{ matrix.arch }} --ndk_sdkver=${{ matrix.ndk_sdkver }}
else
xrepo env -y -b "ndk 22" xmake l ./scripts/test.lua -D -p android -a ${{ matrix.arch }} --ndk_sdkver=${{ matrix.ndk_sdkver }}
fi