Skip to content

Commit 98fdfe0

Browse files
authored
fix: update CI to use macos-15 with Xcode 16.0 (#146)
* fix: update CI to use macos-15 with Xcode 16.0 - Change runner from macos-latest to macos-15 - Add explicit Xcode 16.0 selection to support iOS 18.0 SDK - Resolve "iOS 18.0 Platform Not Installed" error in CI * fix: update Xcode version to 16.4 and adjust marker sizes
1 parent 27ba2a7 commit 98fdfe0

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

.claude/settings.local.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(git add:*)"
5+
],
6+
"deny": [],
7+
"ask": []
8+
}
9+
}

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,16 @@ jobs:
124124
run: yarn turbo:android
125125

126126
build-ios:
127-
runs-on: macos-latest
127+
runs-on: macos-15
128128
env:
129129
TURBO_CACHE_DIR: .turbo/ios
130130
steps:
131131
- name: Checkout
132132
uses: actions/checkout@v4
133133

134+
- name: Select Xcode version
135+
run: sudo xcode-select -s /Applications/Xcode_16.4.app
136+
134137
- name: Setup
135138
uses: ./.github/actions/setup
136139

example/src/App.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,16 +149,16 @@ export default function App() {
149149
>(() => {
150150
return generateArray(5).map((i) => {
151151
return {
152-
width: 200,
153-
height: 200,
152+
width: 40,
153+
height: 40,
154154
markers: generateArray(3).map<ClusterMarkerProp>(
155155
(j) =>
156156
({
157157
image: {
158158
httpUri: `https://picsum.photos/seed/${hash}-${i}-${j}/32/32`,
159159
},
160-
width: 100,
161-
height: 100,
160+
width: 40,
161+
height: 40,
162162
latitude: Cameras.Jeju.latitude + Math.random() + 1.5,
163163
longitude: Cameras.Jeju.longitude + Math.random() + 1.5,
164164
identifier: `${hash}-${i}-${j}`,

0 commit comments

Comments
 (0)