Skip to content

Commit

Permalink
Check on all supported macOS versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kelson42 committed Oct 29, 2023
1 parent 13571d7 commit f1056b0
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,30 @@ on:
- main

jobs:
Macos:
macOS:
strategy:
fail-fast: false
matrix:
os:
- macos-11
- macos-12
- macos-13
- macos-13-arm64
target:
- native_dyn
- iOS_arm64
- iOS_x86_64

runs-on: macos-12
exclude:
# iOS cross-compilation only on the 2 latest versions of macOS x86_64
- os: macos-11
target: iOS_arm64
- os: macos-13-arm64
target: iOS_x86_64
- os: macos-11
target: iOS_arm64
- os: macos-13-arm64
target: iOS_x86_64
runs-on: ${{ matrix.os }}

steps:
- name: Checkout code
Expand Down

0 comments on commit f1056b0

Please sign in to comment.