Skip to content

Commit 7959b35

Browse files
committed
fix(ci): Don't set nproc on cmake
Signed-off-by: Richard Palethorpe <[email protected]>
1 parent f521aa7 commit 7959b35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/cpp/llama/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ grpc-server: llama.cpp llama.cpp/examples/grpc-server
8080
@echo "Building grpc-server with $(BUILD_TYPE) build type and $(CMAKE_ARGS)"
8181
ifneq (,$(findstring sycl,$(BUILD_TYPE)))
8282
+bash -c "source $(ONEAPI_VARS); \
83-
cd llama.cpp && mkdir -p build && cd build && cmake .. $(CMAKE_ARGS) && cmake --build . --config Release $(TARGET) -j$(nproc)"
83+
cd llama.cpp && mkdir -p build && cd build && cmake .. $(CMAKE_ARGS) && cmake --build . --config Release $(TARGET)"
8484
else
85-
+cd llama.cpp && mkdir -p build && cd build && cmake .. $(CMAKE_ARGS) && cmake --build . --config Release $(TARGET) -j$(nproc)
85+
+cd llama.cpp && mkdir -p build && cd build && cmake .. $(CMAKE_ARGS) && cmake --build . --config Release $(TARGET)
8686
endif
8787
cp llama.cpp/build/bin/grpc-server .

0 commit comments

Comments
 (0)