Skip to content

Commit 64faafc

Browse files
committed
no test-arg-parser on windows
1 parent 04eddb8 commit 64faafc

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,6 +1190,8 @@ jobs:
11901190
run: |
11911191
scripts/install-oneapi.bat $WINDOWS_BASEKIT_URL $WINDOWS_DPCPP_MKL
11921192
1193+
# TODO: add libcurl support ; we will also need to modify win-build-sycl.bat to accept user-specified args
1194+
11931195
- name: Build
11941196
id: cmake_build
11951197
run: examples/sycl/win-build-sycl.bat

tests/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,13 @@ if (NOT WIN32)
131131
endif()
132132

133133
llama_target_and_test(test-log.cpp)
134-
llama_target_and_test(test-arg-parser.cpp)
135134
llama_target_and_test(test-chat-template.cpp)
136135

136+
# this fails on windows (github hosted runner) due to missing .NET, so we disable it
137+
if (NOT WIN32)
138+
llama_target_and_test(test-arg-parser.cpp)
139+
endif()
140+
137141
# llama_target_and_test(test-opt.cpp) # SLOW
138142
llama_target_and_test(test-gguf.cpp)
139143
llama_target_and_test(test-backend-ops.cpp)

0 commit comments

Comments
 (0)