Skip to content

Commit 4583d15

Browse files
committed
Specify architecture for emulator in CI
1 parent 7ceaed6 commit 4583d15

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,15 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
swift: ['6.2']
33-
os: ['macos-13', 'macos-26']
32+
- os: 'macos-13'
33+
swift: '6.1'
34+
arch: 'x86_64'
35+
- os: 'macos-13'
36+
swift: '6.2'
37+
arch: 'x86_64'
38+
- os: 'macos-26'
39+
swift: '6.2'
40+
arch: 'arm64-v8a'
3441
runs-on: ${{ matrix.os }}
3542
timeout-minutes: 30
3643
steps:
@@ -45,6 +52,7 @@ jobs:
4552
uses: reactivecircus/android-emulator-runner@v2
4653
with:
4754
api-level: 28
55+
arch: ${{ matrix.arch }}
4856
script: ANDROID_NDK_ROOT="" skip android test --verbose
4957
- name: "Test Swift Package on macOS"
5058
run: swift test

0 commit comments

Comments
 (0)