Skip to content

Commit d7b9304

Browse files
committed
release workflow remove windows arm builds
1 parent 8e4c24c commit d7b9304

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

.github/workflows/release.yaml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -104,21 +104,22 @@ jobs:
104104
arch: x86_64,
105105
cmake: '-G "Visual Studio 16 2019" -A "x64"'
106106
}
107-
- {
108-
os: Windows,
109-
arch: aarch64,
110-
cmake: '-G "Visual Studio 16 2019" -A "ARM64"'
111-
}
112107
- {
113108
os: Windows,
114109
arch: x86,
115110
cmake: '-G "Visual Studio 16 2019" -A "Win32"'
116111
}
117-
- {
118-
os: Windows,
119-
arch: arm,
120-
cmake: '-G "Visual Studio 16 2019" -A "ARM"'
121-
}
112+
# MSVC aarch64 builds no longer work with llama.cpp (requires clang instead)
113+
# - {
114+
# os: Windows,
115+
# arch: aarch64,
116+
# cmake: '-G "Visual Studio 16 2019" -A "ARM64"'
117+
# }
118+
# - {
119+
# os: Windows,
120+
# arch: arm,
121+
# cmake: '-G "Visual Studio 16 2019" -A "ARM"'
122+
# }
122123
steps:
123124
- uses: actions/checkout@v4
124125
- name: Build libraries

0 commit comments

Comments
 (0)