From 6ecba0d0d0c660eb5fa974d89560b534df03bb2c Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Tue, 30 Dec 2025 14:53:52 +0200 Subject: [PATCH] fix 5 --- .github/workflows/server.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index b3b3750e49..5694feb2c9 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -69,6 +69,12 @@ jobs: fetch-depth: 0 ref: ${{ github.event.inputs.sha || github.event.pull_request.head.sha || github.sha || github.head_ref || github.ref_name }} + - name: Build + id: cmake_build + run: | + cmake -B build -DLLAMA_CURL=OFF -DLLAMA_BUILD_BORINGSSL=ON + cmake --build build --config ${{ matrix.build_type }} -j ${env:NUMBER_OF_PROCESSORS} --target llama-server + - name: Python setup id: setup_python uses: actions/setup-python@v5