8000 Force LD_LIBRARY_PATH · Zephyr800/llama-cpp-python@ed5a926 · GitHub
[go: up one dir, main page]

Skip to content

Commit ed5a926

Browse files
committed
Force LD_LIBRARY_PATH
1 parent 2f070af commit ed5a926

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build-and-release.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
python -m pip install .[all]
32+
python -m pip install -e .[all]
33+
34+
- name: Set LD_LIBRARY_PATH (Hack)
35+
run: |
36+
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/runner/work/llama-cpp-python/llama-cpp-python/llama_cpp/" >> $GITHUB_ENV
37+
3338
3439
- name: Build wheels
3540
run: python -m cibuildwheel --output-dir wheelhouse

0 commit comments

Comments
 (0)
0