Skip to content

Commit

Permalink
CI: fix release build (Ubuntu)
Browse files Browse the repository at this point in the history
PR ggml-org#8006 changes defaults to build shared libs. However, CI for release
builds expects static builds.
  • Loading branch information
loonerin committed Jun 27, 2024
1 parent f675b20 commit ac410cb
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 ac410cb

Please sign in to comment.