Skip to content

Commit

Permalink
Update CI matrix to exclude specific OS and arch combos
Browse files Browse the repository at this point in the history
  • Loading branch information
theapache64 committed Jan 19, 2025
1 parent eff787c commit 57ba73e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
os: [macos-latest, ubuntu-latest, windows-latest, macos-arm64]
arch: [x64, arm64]
exclude:
- { os: macos-latest, arch: arm64 }
- { os: windows-latest, arch: arm64 }
- { os: ubuntu-latest, arch: arm64 }
- { os: macos-arm64, arch: x64 }
runs-on: ${{ matrix.os }}
if: startsWith(github.ref, 'refs/tags/')
steps:
Expand Down

0 comments on commit 57ba73e

Please sign in to comment.