Skip to content

Commit

Permalink
CI: fix release build (Ubuntu)
Browse files Browse the repository at this point in the history
PR ggerganov#8006 changes defaults to build shared libs. However, CI for releases
expects static builds.
  • Loading branch information
loonerin committed Jun 27, 2024
1 parent f675b20 commit e040149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
run: |
mkdir build
cd build
cmake .. -DLLAMA_FATAL_WARNINGS=ON -DLLAMA_CURL=ON
cmake .. -DLLAMA_FATAL_WARNINGS=ON -DLLAMA_CURL=ON -DBUILD_SHARED_LIBS=OFF
cmake --build . --config Release -j $(nproc)
- name: Test
Expand Down

0 comments on commit e040149

Please sign in to comment.