You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
name: Android
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest]
|
|
|
|
arch: [armeabi-v7a, arm64-v8a]
|
|
|
|
ndk_sdkver: ["29", "21"]
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: xmake-io/github-action-setup-xmake@v1
|
|
|
|
with:
|
|
|
|
xmake-version: branch@dev
|
|
|
|
|
|
|
|
- name: Prepare
|
|
|
|
run: |
|
|
|
|
wget -q https://dl.google.com/android/repository/android-ndk-r21-linux-x86_64.zip
|
|
|
|
unzip -q -o ./android-ndk-r21-linux-x86_64.zip
|
|
|
|
|
|
|
|
- name: Tests
|
|
|
|
run: |
|
|
|
|
xmake l ./scripts/test.lua -D -p android --ndk=`pwd`/android-ndk-r21 --ndk_sdkver=${{ matrix.ndk_sdkver }} -a ${{ matrix.arch }}
|
|
|
|
|