Force LD_LIBRARY_PATH
This commit is contained in:
parent
2f070afd61
commit
ed5a9260f6
1 changed files with 6 additions and 1 deletions
7
.github/workflows/build-and-release.yaml
vendored
7
.github/workflows/build-and-release.yaml
vendored
|
@ -29,7 +29,12 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install .[all]
|
python -m pip install -e .[all]
|
||||||
|
|
||||||
|
- name: Set LD_LIBRARY_PATH (Hack)
|
||||||
|
run: |
|
||||||
|
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/runner/work/llama-cpp-python/llama-cpp-python/llama_cpp/" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
|
||||||
- name: Build wheels
|
- name: Build wheels
|
||||||
run: python -m cibuildwheel --output-dir wheelhouse
|
run: python -m cibuildwheel --output-dir wheelhouse
|
||||||
|
|
Loading…
Reference in a new issue