Skip to content

Commit db23d35

Browse files
committed
shared library check
1 parent fb478f5 commit db23d35

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
run: |
7373
mkdir build
7474
cd build
75-
cmake .. -DLLAMA_FATAL_WARNINGS=OFF -DLLAMA_CURL=ON -DGGML_RPC=ON -DBUILD_SHARED_LIBS=OFF -DGGML_CUDA=ON -DGGML_VULKAN=ON
75+
cmake .. -DLLAMA_FATAL_WARNINGS=OFF -DLLAMA_CURL=ON -DGGML_RPC=ON -DBUILD_SHARED_LIBS=ON -DGGML_CUDA=ON -DGGML_VULKAN=ON
7676
cmake --build . --config Release -j $(nproc)
7777
7878
- name: Determine tag name
@@ -93,6 +93,8 @@ jobs:
9393
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
9494
run: |
9595
cp LICENSE ./build/bin/
96+
cp $(find . -name "libllama.so") ./build/bin/
97+
cp $(find . -name "libggml.so") ./build/bin/
9698
zip -r cudart-vulkan-llama-${{ steps.tag.outputs.name }}-bin-ubuntu-x64.zip ./build/bin/*
9799
98100
- name: Upload artifacts

0 commit comments

Comments
 (0)