File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments