Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check on all supported macOS versions #832

Merged
merged 4 commits into from
Nov 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,38 @@ on:
- main

jobs:
Macos:
macOS:
strategy:
fail-fast: false
matrix:
os:
- macos-11
- macos-12
- macos-13
- macos-13-xlarge
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-11
target: iOS_x86_64
- os: macos-13-xlarge
target: iOS_arm64
- os: macos-13-xlarge
target: iOS_x86_64
# TODO: iOS cross-compilation on macOS 13 compilation has to be fixed
# https://github.com/openzim/libzim/issues/834
- os: macos-13
target: iOS_arm64
- os: macos-13
target: iOS_x86_64
# TODO: M1 runner is still in beta and not reliable
- os: macos-13-xlarge
runs-on: ${{ matrix.os }}

steps:
- name: Checkout code
Expand Down
Loading