Skip to content

Commit b98f61a

Browse files
authored
Update build-ci.yml
1 parent fbde66f commit b98f61a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
export LD_LIBRARY_PATH=/usr/local/cuda-12.6/lib64 ${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
111111
mkdir build
112112
cd build
113-
cmake .. -DLLAMA_FATAL_WARNINGS=OFF -DBUILD_SHARED_LIBS=OFF -DGGML_CUDA=ON
113+
cmake .. -DLLAMA_FATAL_WARNINGS=OFF -DBUILD_SHARED_LIBS=ON -DGGML_CUDA=ON
114114
cmake --build . --config Release -j $(nproc)
115115
116116
- name: Determine tag name
@@ -130,6 +130,8 @@ jobs:
130130
id: pack_artifacts
131131
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
132132
run: |
133+
cp LICENSE ./build/bin/
134+
cp $(find . -name "*.so") ./build/bin/
133135
zip -r cudart-llama-${{ steps.tag.outputs.name }}-bin-ubuntu-x64.zip ./build/bin/*
134136
135137
- name: Upload artifacts

0 commit comments

Comments
 (0)