Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/wheels-cuda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ jobs:
set -euxo pipefail
mkdir -p wheelhouse
export LD_LIBRARY_PATH="${CUDA_LIBRARY_PATHS}:${LD_LIBRARY_PATH:-}"
python -m pip install auditwheel
python -m auditwheel repair \
auditwheel_bin="${CONDA}/envs/ggml/bin/auditwheel"
"${auditwheel_bin}" repair \
--exclude libcuda.so \
--exclude libcuda.so.1 \
--exclude libcudart.so.11.0 \
Expand All @@ -269,7 +269,7 @@ jobs:
dist/*.whl
rm dist/*.whl
cp wheelhouse/*.whl dist/
python -m auditwheel show dist/*.whl
"${auditwheel_bin}" show dist/*.whl

- uses: softprops/action-gh-release@v3
if: startsWith(github.ref, 'refs/tags/') || (github.event_name == 'workflow_dispatch' && inputs.release_tag != '')
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- fix(ci): run CUDA auditwheel from the conda environment
- fix(ci): install auditwheel in accelerator repair steps
- fix(ci): repair accelerator wheel workflow dispatch publishing

Expand Down
Loading