diff options
| author | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-05-25 19:28:30 +0900 |
|---|---|---|
| committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-05-25 19:28:30 +0900 |
| commit | 31ef9ade60a19d369efc81528283d0c8735637cc (patch) | |
| tree | d7287b296df2066c8f89275e184729d0be837b87 | |
| parent | 2a06c8b89f02bb08aaeabf63c1a9f6bf2f9240e1 (diff) | |
| download | portable-31ef9ade60a19d369efc81528283d0c8735637cc.tar.gz portable-31ef9ade60a19d369efc81528283d0c8735637cc.tar.bz2 portable-31ef9ade60a19d369efc81528283d0c8735637cc.zip | |
Split out android test
| -rw-r--r-- | .github/workflows/android_test.yml | 30 | ||||
| -rw-r--r-- | .github/workflows/linux_test.yml | 26 |
2 files changed, 30 insertions, 26 deletions
diff --git a/.github/workflows/android_test.yml b/.github/workflows/android_test.yml new file mode 100644 index 0000000..ea09846 --- /dev/null +++ b/.github/workflows/android_test.yml | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | name: android_ci | ||
| 2 | |||
| 3 | on: [push, pull_request] | ||
| 4 | |||
| 5 | jobs: | ||
| 6 | build-android-8-9: | ||
| 7 | runs-on: ubuntu-18.04 | ||
| 8 | continue-on-error: true | ||
| 9 | env: | ||
| 10 | ARCH: android | ||
| 11 | MIN_NAL: 26 | ||
| 12 | MAX_NAL: 28 | ||
| 13 | name: Android 8.x 9 | ||
| 14 | steps: | ||
| 15 | - uses: actions/checkout@v2 | ||
| 16 | - name: Run CI script | ||
| 17 | run: ./scripts/travis | ||
| 18 | |||
| 19 | build-android-10-11: | ||
| 20 | runs-on: ubuntu-18.04 | ||
| 21 | continue-on-error: true | ||
| 22 | env: | ||
| 23 | ARCH: android | ||
| 24 | MIN_NAL: 29 | ||
| 25 | MAX_NAL: 30 | ||
| 26 | name: Android 10 11 | ||
| 27 | steps: | ||
| 28 | - uses: actions/checkout@v2 | ||
| 29 | - name: Run CI script | ||
| 30 | run: ./scripts/travis | ||
diff --git a/.github/workflows/linux_test.yml b/.github/workflows/linux_test.yml index 610c16c..42b3834 100644 --- a/.github/workflows/linux_test.yml +++ b/.github/workflows/linux_test.yml | |||
| @@ -36,29 +36,3 @@ jobs: | |||
| 36 | - uses: actions/checkout@v2 | 36 | - uses: actions/checkout@v2 |
| 37 | - name: Run CI script | 37 | - name: Run CI script |
| 38 | run: ./scripts/travis | 38 | run: ./scripts/travis |
| 39 | |||
| 40 | build-android-8-9: | ||
| 41 | runs-on: ubuntu-18.04 | ||
| 42 | continue-on-error: true | ||
| 43 | env: | ||
| 44 | ARCH: android | ||
| 45 | MIN_NAL: 26 | ||
| 46 | MAX_NAL: 28 | ||
| 47 | name: Android 8.x 9 | ||
| 48 | steps: | ||
| 49 | - uses: actions/checkout@v2 | ||
| 50 | - name: Run CI script | ||
| 51 | run: ./scripts/travis | ||
| 52 | |||
| 53 | build-android-10-11: | ||
| 54 | runs-on: ubuntu-18.04 | ||
| 55 | continue-on-error: true | ||
| 56 | env: | ||
| 57 | ARCH: android | ||
| 58 | MIN_NAL: 29 | ||
| 59 | MAX_NAL: 30 | ||
| 60 | name: Android 10 11 | ||
| 61 | steps: | ||
| 62 | - uses: actions/checkout@v2 | ||
| 63 | - name: Run CI script | ||
| 64 | run: ./scripts/travis | ||
