Skip to content

Commit

Permalink
Merge pull request #292 from cvarjao-o/fix-cd
Browse files Browse the repository at this point in the history
ci: fix build by pinning to MacOS 12
  • Loading branch information
andrewwhitehead authored May 27, 2024
2 parents c98169e + 37df767 commit b71ce5c
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit b71ce5c

Please sign in to comment.