Skip to content

Commit d3248d9

Browse files
authored
ci : fix ios-xcode-build (#15324)
* fix ios-xcode-build * use xcode-select with fixed version * switch to macos-15 to get xcode 16.4
1 parent 7aeee88 commit d3248d9

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,6 +1113,11 @@ jobs:
11131113
- name: Checkout code
11141114
uses: actions/checkout@v4
11151115

1116+
- name: Setup Xcode
1117+
uses: maxim-lobanov/setup-xcode@v1
1118+
with:
1119+
xcode-version: latest-stable
1120+
11161121
- name: Build
11171122
id: cmake_build
11181123
run: |

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,14 +600,18 @@ jobs:
600600
name: llama-bin-win-hip-${{ matrix.name }}-x64.zip
601601

602602
ios-xcode-build:
603-
runs-on: macos-latest
603+
runs-on: macos-15
604604

605605
steps:
606606
- name: Checkout code
607607
uses: actions/checkout@v4
608608
with:
609609
fetch-depth: 0
610610

611+
- name: Setup Xcode
612+
run: |
613+
sudo xcode-select -s /Applications/Xcode_16.4.app
614+
611615
- name: Build
612616
id: cmake_build
613617
run: |

0 commit comments

Comments
 (0)