Skip to content

Commit

Permalink
Exclude driver stub.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Jun 27, 2024
1 parent 81cf9a5 commit 804afd4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ rapids-logger "Build wheel"
mkdir -p ./dist
python -m pip wheel . --wheel-dir=./dist -vvv --disable-pip-version-check --no-deps

python -m auditwheel repair -w ./final_dist ./dist/*
# Exclude libcuda.so.1 because we only install a driver stub
python -m auditwheel repair --exclude libcuda.so.1 -w ./final_dist ./dist/*

rapids-logger "Upload Wheel"
RAPIDS_PY_WHEEL_NAME="pynvjitlink_${RAPIDS_PY_CUDA_SUFFIX}" rapids-upload-wheels-to-s3 ./final_dist

0 comments on commit 804afd4

Please sign in to comment.