Skip to content

Commit 57ba73e

Browse files
committed
Update CI matrix to exclude specific OS and arch combos
1 parent eff787c commit 57ba73e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,13 @@ jobs:
7575
strategy:
7676
fail-fast: false
7777
matrix:
78-
os: [ macos-latest, ubuntu-latest, windows-latest ]
78+
os: [macos-latest, ubuntu-latest, windows-latest, macos-arm64]
7979
arch: [x64, arm64]
80+
exclude:
81+
- { os: macos-latest, arch: arm64 }
82+
- { os: windows-latest, arch: arm64 }
83+
- { os: ubuntu-latest, arch: arm64 }
84+
- { os: macos-arm64, arch: x64 }
8085
runs-on: ${{ matrix.os }}
8186
if: startsWith(github.ref, 'refs/tags/')
8287
steps:

0 commit comments

Comments
 (0)