Skip to content

Commit a9bf8a7

Browse files
committed
Specify architecture for emulator in CI
1 parent 1162c93 commit a9bf8a7

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,16 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
- os: 'macos-26'
34-
swift: '6.2'
35-
arch: 'arm64-v8a'
33+
include:
34+
- os: 'macos-26'
35+
swift: '6.2'
36+
arch: 'arm64-v8a'
37+
- os: 'macos-13'
38+
swift: '6.1'
39+
arch: 'x86_64'
40+
- os: 'macos-13'
41+
swift: '6.2'
42+
arch: 'x86_64'
3643
runs-on: ${{ matrix.os }}
3744
steps:
3845
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)