Split out android test

This commit is contained in:
kinichiro 2021-05-25 19:28:30 +09:00
parent 2a06c8b89f
commit 31ef9ade60
2 changed files with 30 additions and 26 deletions

30
.github/workflows/android_test.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: android_ci
on: [push, pull_request]
jobs:
build-android-8-9:
runs-on: ubuntu-18.04
continue-on-error: true
env:
ARCH: android
MIN_NAL: 26
MAX_NAL: 28
name: Android 8.x 9
steps:
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/travis
build-android-10-11:
runs-on: ubuntu-18.04
continue-on-error: true
env:
ARCH: android
MIN_NAL: 29
MAX_NAL: 30
name: Android 10 11
steps:
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/travis

View File

@ -36,29 +36,3 @@ jobs:
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/travis
build-android-8-9:
runs-on: ubuntu-18.04
continue-on-error: true
env:
ARCH: android
MIN_NAL: 26
MAX_NAL: 28
name: Android 8.x 9
steps:
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/travis
build-android-10-11:
runs-on: ubuntu-18.04
continue-on-error: true
env:
ARCH: android
MIN_NAL: 29
MAX_NAL: 30
name: Android 10 11
steps:
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/travis