Skip to content
Open
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
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ jobs:
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"

build-ios:
runs-on: macos-latest
# Pinned: macos-latest is mid-migration to macOS 26, whose simulator set
# has no iPhone 16 Pro on an iOS >=26 runtime, breaking the harness boot.
runs-on: macos-15
env:
XCODE_VERSION: 26.3
TURBO_CACHE_DIR: .turbo/ios
Expand Down Expand Up @@ -208,7 +210,9 @@ jobs:
yarn turbo run build:ios --cache-dir="${{ env.TURBO_CACHE_DIR }}"

test-harness-ios:
runs-on: macos-latest
# Pinned to macos-15 — see build-ios. macos-26 runners lack a matching
# iPhone 16 Pro / iOS >=26 simulator, so the boot step fails intermittently.
runs-on: macos-15
timeout-minutes: 60
env:
XCODE_VERSION: 26.3
Expand Down
Loading