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

ci: fix build by pinning to MacOS 12 #292

Merged
merged 2 commits into from
May 27, 2024
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
name: Run checks
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
os: [macos-12, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}

steps:
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
# using cross here to build against an older glibc for compatibility
use_cross: true
- architecture: darwin-universal
os: macos-latest
os: macos-12
lib: libindy_vdr.dylib
target: darwin-universal
# beta or nightly required for aarch64-apple-darwin target
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
build-ios:
name: Build library (iOS)
needs: [checks]
runs-on: macos-latest
runs-on: macos-12
strategy:
matrix:
target: [aarch64-apple-ios, aarch64-apple-ios-sim, x86_64-apple-ios]
Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:

create-ios-xcframework:
name: Create iOS xcframework
runs-on: macos-latest
runs-on: macos-12
needs: build-ios

steps:
Expand Down Expand Up @@ -479,7 +479,7 @@ jobs:
- os: ubuntu-latest
architecture: linux-x86_64
plat-name: manylinux2014_x86_64
- os: macos-latest
- os: macos-12
architecture: darwin-universal
plat-name: macosx_10_9_universal2 # macosx_10_9_x86_64
- os: windows-latest
Expand Down
Loading