File tree Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -351,16 +351,10 @@ jobs:
351351 fetch-depth : 0
352352 ref : ${{ github.event.inputs.sha || github.event.pull_request.head.sha || github.sha || github.head_ref || github.ref_name }}
353353
354- - name : libCURL
355- id : get_libcurl
356- uses : ./.github/actions/windows-setup-curl
357-
358354 - name : Build
359355 id : cmake_build
360- env :
361- CURL_PATH : ${{ steps.get_libcurl.outputs.curl_path }}
362356 run : |
363- cmake -B build -DCURL_LIBRARY="$env:CURL_PATH/lib/libcurl.dll.a" -DCURL_INCLUDE_DIR="$env:CURL_PATH/include"
357+ cmake -B build -DLLAMA_CURL=OFF -DLLAMA_BUILD_BORINGSSL=ON
364358 cmake --build build --config Release -j ${env:NUMBER_OF_PROCESSORS} --target llama-server
365359
366360 - name : Python setup
@@ -374,13 +368,6 @@ jobs:
374368 run : |
375369 pip install -r tools/server/tests/requirements.txt
376370
377- - name : Copy Libcurl
378- id : prepare_libcurl
379- env :
380- CURL_PATH : ${{ steps.get_libcurl.outputs.curl_path }}
381- run : |
382- cp $env:CURL_PATH/bin/libcurl-x64.dll ./build/bin/Release/libcurl-x64.dll
383-
384371 - name : Tests
385372 id : server_integration_tests
386373 if : ${{ !matrix.disabled_on_pr || !github.event.pull_request }}
You can’t perform that action at this time.
0 commit comments