package An official xmake package repository
https://xrepo.xmake.io/
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.
37 lines
1001 B
37 lines
1001 B
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 }} |
|
|
|
concurrency: |
|
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Android-${{ matrix.arch }}-${{ matrix.ndk_sdkver }} |
|
cancel-in-progress: true |
|
steps: |
|
- uses: actions/checkout@v1 |
|
- uses: xmake-io/github-action-setup-xmake@v1 |
|
with: |
|
xmake-version: branch@master |
|
actions-cache-folder: '.xmake-cache' |
|
|
|
- name: Prepare |
|
run: | |
|
wget -q https://dl.google.com/android/repository/android-ndk-r22-linux-x86_64.zip |
|
unzip -q -o ./android-ndk-r22-linux-x86_64.zip |
|
|
|
- name: Tests |
|
run: | |
|
xmake l ./scripts/test.lua -D -p android --ndk=`pwd`/android-ndk-r22 --ndk_sdkver=${{ matrix.ndk_sdkver }} -a ${{ matrix.arch }} |
|
|
|
|