Skip to content

Commit

Permalink
Fix some dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Jan 18, 2025
1 parent f66584c commit 6c2f12a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ package_dir="python/rapids-logger"
rapids-logger "Building '${package_name}' wheel"
sccache --zero-stats
python -m pip wheel \
-w dist \
-w "${package_dir}/dist" \
-v \
--no-deps \
--disable-pip-version-check \
"${package_dir}"
sccache --show-adv-stats

mkdir -p ${package_dir}/final_dist
mkdir -p "${package_dir}/final_dist"
python -m auditwheel repair \
-w ${package_dir}/final_dist \
${package_dir}/dist/*
-w "${package_dir}/final_dist" \
"${package_dir}/dist/*"

RAPIDS_PY_WHEEL_NAME="${package_name}" rapids-upload-wheels-to-s3 cpp "${package_dir}/final_dist"

0 comments on commit 6c2f12a

Please sign in to comment.