Skip to content

Commit 6ddd581

Browse files
committed
ci : start using OpenSSL
Signed-off-by: Adrien Gallouët <[email protected]>
1 parent 97d5117 commit 6ddd581

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/server.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
curl \
5757
wget \
5858
language-pack-en \
59-
libcurl4-openssl-dev
59+
libssl-dev
6060
6161
- name: Clone
6262
id: checkout
@@ -242,7 +242,7 @@ jobs:
242242
curl \
243243
wget \
244244
language-pack-en \
245-
libcurl4-openssl-dev
245+
libssl-dev
246246
247247
- name: Clone
248248
id: checkout
@@ -283,6 +283,8 @@ jobs:
283283
run: |
284284
cmake -B build \
285285
-DGGML_NATIVE=OFF \
286+
-DLLAMA_CURL=OFF \
287+
-DLLAMA_OPENSSL=ON \
286288
-DLLAMA_BUILD_SERVER=ON \
287289
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
288290
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON \
@@ -295,6 +297,8 @@ jobs:
295297
run: |
296298
cmake -B build \
297299
-DGGML_NATIVE=OFF \
300+
-DLLAMA_CURL=OFF \
301+
-DLLAMA_OPENSSL=ON \
298302
-DLLAMA_BUILD_SERVER=ON \
299303
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
300304
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON ;
@@ -306,6 +310,8 @@ jobs:
306310
run: |
307311
cmake -B build \
308312
-DGGML_NATIVE=OFF \
313+
-DLLAMA_CURL=OFF \
314+
-DLLAMA_OPENSSL=ON \
309315
-DLLAMA_BUILD_SERVER=ON \
310316
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ;
311317
cmake --build build --config ${{ matrix.build_type }} -j $(nproc) --target llama-server

0 commit comments

Comments
 (0)