Skip to content

Commit 55c227b

Browse files
committed
fix: update deprecated GitHub Actions runners
Replace removed runners: - windows-2019 → windows-2022 (with VS generator 16 2019 → 17 2022) - macos-13 → macos-15 (Intel macOS runners retired; macos-15 is ARM64) https://claude.ai/code/session_017C9kqtVWUdnfMqosKJchiG
1 parent 6efa049 commit 55c227b

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
fail-fast: false
4646
matrix:
4747
target:
48-
- runner: macos-13
48+
- runner: macos-15
4949
cmake: -DLLAMA_METAL=OFF -DLLAMA_VERBOSE=ON
5050
- runner: macos-14
5151
cmake: -DLLAMA_METAL_EMBED_LIBRARY=ON -DLLAMA_VERBOSE=ON
@@ -75,8 +75,8 @@ jobs:
7575
if-no-files-found: warn
7676

7777
build-and-test-windows:
78-
name: windows-2019
79-
runs-on: windows-2019
78+
name: windows-2022
79+
runs-on: windows-2022
8080
steps:
8181
- uses: actions/checkout@v4
8282
- uses: actions/setup-java@v4

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
matrix:
7575
target:
7676
- {
77-
runner: macos-13,
77+
runner: macos-15,
7878
cmake: '-DLLAMA_METAL=OFF'
7979
}
8080
- {
@@ -97,20 +97,20 @@ jobs:
9797

9898
build-win-native:
9999
name: Build ${{ matrix.target.os }}-${{ matrix.target.arch }}
100-
runs-on: windows-2019
100+
runs-on: windows-2022
101101
strategy:
102102
fail-fast: false
103103
matrix:
104104
target:
105105
- {
106106
os: Windows,
107107
arch: x86_64,
108-
cmake: '-G "Visual Studio 16 2019" -A "x64"'
108+
cmake: '-G "Visual Studio 17 2022" -A "x64"'
109109
}
110110
- {
111111
os: Windows,
112112
arch: x86,
113-
cmake: '-G "Visual Studio 16 2019" -A "Win32"'
113+
cmake: '-G "Visual Studio 17 2022" -A "Win32"'
114114
}
115115
# MSVC aarch64 builds no longer work with llama.cpp (requires clang instead)
116116
# - {

0 commit comments

Comments
 (0)