Skip to content

Commit 7cb65c1

Browse files
committed
CI matrix with emulator parameter
1 parent f6bf124 commit 7cb65c1

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/Android-CI.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ jobs:
1111
name: Build & Test
1212
runs-on: ${{ matrix.os }}
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
os: [ macOS-13 ]
17+
api: [ 28 ]
18+
tag: [ default ]
19+
abi: [ x86_64 ]
1620
java_version: [ 17 ]
1721
steps:
1822
- name: Checkout
@@ -40,9 +44,9 @@ jobs:
4044
uses: hannesa2/action-android/[email protected]
4145
with:
4246
cmd: ./gradlew cAT --continue
43-
api: 28
44-
tag: default
45-
abi: x86_64
47+
api: ${{ matrix.api }}
48+
tag: ${{ matrix.tag }}
49+
abi: ${{ matrix.abi }}
4650
cmdOptions: -noaudio -no-boot-anim -no-window -metrics-collection
4751
- name: Archive Espresso results
4852
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)